.login-page-container {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #242424;
}

.login-container-parent {
    flex: 2;
    background: linear-gradient(0deg, #50475E, #50475E),
        radial-gradient(54.84% 48.15% at 50% 51.85%, rgba(47, 60, 69, 0) 0%, rgba(7, 12, 15, 0.48) 100%);
    background-blend-mode: color-dodge;
    overflow: hidden;
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-container-parent::before {
    content: "";
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-image: url("../images/background.png");
    z-index: 1;
}

.login-container {
    z-index: 1;
    position: relative;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    background: linear-gradient(0deg, #413d56, #201b2f);
    border: 1px solid rgba(104, 97, 114, 0.6);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    /* padding: 2.5rem; */
    text-align: left;
    font-size: 1rem;
    color: #fff;
    font-family: 'Noto Sans';
    width: 35vw;
    height: 60vh;
}

.login-title {
    width: 100%;
    position: relative;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Noto Sans';
    color: #baa2dd;
    text-align: center;
    display: inline-block;
}

.login-form-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 30em;
    gap: 2rem;
    /* margin: 100; */
}

.login-form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 30em;
    gap: 1rem;
}

.login-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: 'Noto Sans';
}

.forgot-password {
    color: #00e3f3;
    font-size: 0.875rem;
    /* text-align: right; */
    cursor: pointer;
    margin-bottom: 1rem;
}

.login-button {
    width: 100%;
    position: relative;
    border-radius: 6px;
    background-color: #00e3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem;
    box-sizing: border-box;
    text-align: left;
    font-size: 1rem;
    color: #040706;
    font-family: 'Noto Sans';
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.login-button:hover {
    opacity: 0.8;
}

/* password input with eye icon */
.login-password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.login-password-container .login-input[type="password"] {
    padding-right: 2.25rem;
}

.eye-icon {
    position: absolute;
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    opacity: 0.85;
}

.eye-icon.hidden {
    opacity: 0.45;
}

.terms-conditions {
    font-size: 0.75rem;
    color: #bbb;
    text-align: center;
}

.terms-conditions a {
    color: #00e3f3;
    text-decoration: none;
}

.seperator {
    width: 50%;
    height: 0.05rem;
    position: relative;
    background-color: rgba(104, 97, 114, 0.6);
}

.login-social-button {
    width: 100%;
    position: relative;
    border-radius: 6px;
    background-color: #2f2d3b;
    border: 1px solid rgba(104, 97, 114, 0.6);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem;
    gap: 1rem;
    text-align: center;
    font-size: 1rem;
    color: #fff;
    font-family: 'Noto Sans';
    margin: 1rem;
    cursor: pointer;
}

.login-social-button:hover {
    opacity: 0.8;
}

.login-social-logo {
    height: 1em;
}

.login-socal-logo-twitter {
    filter: invert(100%);
}

.login-social {
    margin-top: 20px;
    width: 19em;
    text-align: center;
    border: 0.5px solid var(--shade-purple-2);
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
}

.login-social:hover,
.login-alt:hover .login-social-button:hover {
    background: radial-gradient(ellipse, var(--shade-purple-5) 10%, var(--shade-purple-3) 100%);
    opacity: 0.8;
}

.register-prompt {
    /* font-size: 1.25rem; */
    color: #bbb;
    text-align: center;
}

.register-prompt a {
    color: #00e3f3;
    text-decoration: none;
}