.authentication-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1A1A1A;
}

.login-auth-content {
    padding: 45px 57px;
    background-color: #000000;
    border-radius: 5px;
    max-width: 434px;
    box-shadow: 0px 0px 4px 4px rgba(255, 255, 255, 0.25);
    width: 434px;
}

.logo {
    margin-bottom: 30px;
}

.login-auth-content > h2 {
    color: #FFFFFF;
    font-size: 1.125rem;
    font-family: Gotham Medium;
    font-weight: 500;
    margin-bottom: 15px;
}

.login-auth-content .input-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-auth-content .input-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.login-auth-content .input {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.input-label {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.25rem;
    color: #000000;
}

.input-field {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: 0.8px solid #515254;
    background: var(--white, #FFF);
    padding-left: 10px;
    padding-right: 10px;

    font-family: Gotham Book;
    font-size: .875rem;
    color: #000000;
    font-weight: 500;
}

.forgot-btn {
    background-color: #000093;
    border: 1px solid transparent;
    border-radius: 7px;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.25rem;
    font-family: Gotham Medium;
    letter-spacing: 2.4px;
    color: #FFFFFF;
    width: 100%;
    height: 40px;
}

@media (max-width: 480px) {
    .login-auth-content {
        padding: 36px 30px;
        margin: 0 10px;
        width: 100%;
    }
}