.auth-container {
    max-width: 500px;
    margin: 150px auto 130px;
    padding: 30px;
    background-color: #0a0a0a;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title {
    font-size: 2.2rem;
    margin: 0 0 10px 0;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0;
}

.auth-icon {
    font-size: 4rem;
    color: #55ff55;
    margin-bottom: 20px;
}

/* Form styles */
.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
}

.auth-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    box-sizing: border-box;
}

.auth-form input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Button styles */
.auth-button, .auth-button-link {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #9e33e6, #505ed7);
    color: white !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.auth-button-link {
    margin-top: 20px;
}

.auth-button:hover, .auth-button-link:hover {
    background-color: #1b1b1b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(160, 74, 226, 0.3);
}

/* Links styles */
.auth-links {
    margin-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.auth-links a {
    color: #2b8ef1;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Message styles */
.auth-message {
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}

.auth-message p {
    line-height: 1.6;
    text-align: center;
    margin-bottom: -50px;
}

.help-text {
    text-align: left;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 10px 0 30px 0;
}

@media screen and (min-width: 1920px) and (max-width: 1921px) {
    /* Start Password Reset */
    .auth-container {
        max-width: 650px !important;
    }

    .auth-title {
        font-size: 4rem;
    }

    .auth-subtitle {
        font-size: 2rem;
    }

    .help-text {
        font-size: 1.35rem;
    }

    .auth-form label {
        font-size: 2rem;
    }

    .auth-form input {
        font-size: 1.5rem;
    }

    .auth-button {
        margin-top: 15px;
        font-size: 2rem;
    }

    /* Email Sent */
    .fas.fa-envelope{
        font-size: 5rem;
    }

    .auth-message p {
        font-size: 1.5rem;
    }

}

@media (max-width: 768px) {
    .auth-container {
        margin: 25px 25px;
        max-width: 90% !important;
    }
}