:root {
    --main-color: #00fbff;
    --input-color: white;
}
*:not(p) {
    color: var(--main-color);
}

/* Containers */
.form-container {
    width: 80%;
    height: 100%;
    margin: 0 10%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.form-con, .welcome-con {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.welcome-con {
    height: 40%;
}
.welcome-con h1 {
    transform: scale(1.5);
    font-size: calc(5vw + 5vh);
}
.welcome-con h3 {
    transform: scale(1);
    font-size: calc(2vw + 1vh);
}
.welcome-con p {
    transform: scale(1);
    font-size: calc(0.5vw + 0.5vh);
}
.form-con {
    height: 60%;
    justify-content: flex-start;
}
.welcome-con h1 {
    display: block;
    margin-bottom: 0;
}
.welcome-con h3 {
    font-size: 75%;
}

/* Form & Form Contents */
.login-form {
    --bg-dark: #323b3e;
    --bg-light: #00abad;
    --bg-light-2: #496465;
    --bg-light-3: #577475;
    --bg-light-4: #325e62;
    --bg-light-5: #32595d;
    --input-bg: #9c9c9c60;
    --no-acc-clr: #5a6163;
    width: 100%;
    height: fit-content;
    padding: 0;
    max-width: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}
.login-form .input-span {
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}
.login-form .login-input {
    border-radius: 0.5rem;
    padding: 1rem 0.75rem;
    width: 100%;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--input-bg);
    color: var(--input-color);
    outline: 2px solid var(--bg-dark);
}
.login-form .login-input:focus {
    outline: 2px solid var(--bg-light);
}
.login-form .label {
    color: var(--main-color);
}
.login-form .submit {
    padding: 1rem 0.75rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 3rem;
    background-color: var(--bg-light-2);
    cursor: pointer;
    border: none;
    outline: 2px solid var(--bg-light-4);
}
.login-form .submit:hover {
    background-color: var(--bg-light-3);
    outline: 2px solid var(--bg-light-5);
}
.no-acc-span {
    text-decoration: none;
    color: var(--no-acc-clr);
}

/* Login Page Logo Styles */
.main-logo-container {
    height: 50%;
    max-height: 200px;
    margin-top: 10%;
    width: fit-content;
    border-radius: 100%;
    outline: 5px solid #2a2e37;
    overflow: clip;
}
.main-logo-container .main-logo {
    height: 100%;
    width: auto;
}

/* Sign Up Modal */
.signup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.signup-box {
    background: #1e2325;
    border: 1px solid #005f61;
    border-radius: 0.75rem;
    padding: 2rem;
    width: 90%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 0 30px rgba(0,251,255,0.1);
}
.signup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.signup-header h3 {
    margin: 0;
    color: var(--main-color);
}
.signup-close {
    background: none;
    border: none;
    color: var(--main-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}
.signup-close:hover {
    color: #75fdff;
}
.signup-box .login-form .login-input::placeholder {
    color: #6a7f80;
    font-size: 0.8rem;
}

/* Alert Fixes */
.fa-triangle-exclamation {
    color: rgb(250 204 21);
}
.alert, .alert p, .alert-prompt-wrap, .alert-prompt-wrap p, .text-sm, .text-yellow-700 {
    color: black;
}

/* Media Queries */
@media only screen and (min-width: 800px) {
    .form-container {
        flex-direction: row;
    }
    .form-con, .welcome-con {
        width: 50%;
        height: 100%;
    }
    .form-con {
        justify-content: center;
    }
    .login-form .input-span {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .login-form .input-span:nth-child(2) {
        margin-bottom: 0;
    }
    .welcome-con h1 {
        display: block;
        margin-bottom: 0;
        font-size: 3em;
    }
    .welcome-con h3 {
        font-size: 1.25em;
    }
}
@media only screen and (max-width: 800px) {
    .welcome-con h1 {
        transform: scale(1);
        font-size: calc(5vw + 5vh);
    }
    .welcome-con h3 {
        transform: scale(1);
        font-size: calc(2vw + 1vh);
    }
    .welcome-con p {
        transform: scale(1);
        font-size: calc(0.75vw + 0.5vh);
    }
}
@media only screen and (max-height: 600px) and (max-width: 800px) {
    .welcome-con {
        height: 30%;
    }
    .form-con {
        height: 70%;
    }
}
@media only screen and (max-height: 500px) and (max-width: 800px) {
    .welcome-con {
        height: 20%;
    }
    .form-con {
        height: 80%;
    }
}