/* Форма входа */
.login-container {
    background: linear-gradient(to bottom, #3FB03F 0%, #009684 100%);
    width: 501px;
    height: auto;
    min-height: 336px;
    border-radius: 22px;
    padding: 40px 45px;
    box-sizing: border-box;
    margin: 120px auto;
    color: white;
}

.form-input {
    width: 100%;
    height: 64px;
    border-radius: 14px;
    border: none;
    margin-bottom: 15px;
    padding: 0 25px;
    font-size: 16px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
}

.form-input:focus {
    outline: none;
    background: #fff;
}

.button-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}

.login-btn {
    width: 176px;
    height: 47px;
    background: #3FB03F;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background: #2d8a2d;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

.bottom-links {
    display: flex;
    gap: 10px;
    color: white;
    font-size: 14px;
    margin-top: 20px;
    justify-content: center;
}

.bottom-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.bottom-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.text-danger {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
    display: block;
}

/* Адаптивность */
@media (max-width: 768px) {
    .login-container {
        width: 90%;
        max-width: 501px;
        margin: 60px auto;
        padding: 30px;
    }

    .button-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .login-btn {
        width: 100%;
    }

    .remember-me {
        justify-content: center;
    }
} 