body {
    background: linear-gradient(135deg, #0e0f0f, #181b1b);
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background: rgba(25, 9, 117, 0.25);
    border-radius: 20px;
    border: 1.5px solid rgba(19, 209, 235, 0.12);
    color: rgba(255, 255, 255, .9);
    width: 20%;
    height: 38%;
    padding: 25px;
    gap: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 0 2.5px rgba(95, 72, 226, 0.4),
        0 0 4px rgba(95, 72, 226, .3),
        0 0 5.5px rgba(95, 72, 226, .15);
}

.login-box p,
h3 {
    margin: 0;
}

.login-box .login-info {
    margin: 5px;
}

.login-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.input-box {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
}

#input-iconImage {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .55);
    height: 22.5px;
    width: 22.5px;
}

.login-input {
    background: rgba(0, 0, 0, .15);
    border: 1.2px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    width: 100%;
    height: 42px;
    padding-left: 38px;
    box-sizing: border-box;
    color: white;
}

.login-btn {
    background: linear-gradient(35deg, rgb(113, 61, 196), rgb(146, 95, 228));
    color: white;
    border: 1.2px solid transparent;
    border-radius: 10px;
    width: 100%;
    height: 45px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:
        transform .25s ease,
        border-color .25s ease,
        filter .25s ease,
        box-shadow .25s ease;
    box-sizing: border-box;
    position: relative;
}

.login-btn:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, .12);
    filter: brightness(1.1);
    box-shadow:
        0 0 10px rgba(146, 95, 228, .35);
}
#register_arrow {
    right: 2.5vh;
    position: absolute;
}

.footer {
    display: flex;
    flex-direction: column;
}

.footer_text, .return_login {
    color: rgb(235, 115, 235);
    border-bottom: 1.2px solid rgb(235, 115, 235);
    cursor: pointer;
    transition:
        color .25s ease,
        transform .25s ease,
        border-color .25s ease;
}

.footer_text:hover, .return_login:hover {
    color: rgb(151, 77, 151);
    transform: scale(1.01);
    border-bottom-color: rgb(151, 77, 151);
}
.return_login {
    border: none;
    top: 1.5vh;
    left: 1.5vh;
    position: absolute;
}