.login-user-icon {
    opacity: 0.6;
}

.login-account-text {
    color: #888;
    font-size: 16px;
}

.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.form-input {
    width: 380px;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

    /* Force white background for autofilled fields (Chrome, Edge, Safari) */
    .form-input:-webkit-autofill,
    .form-input:-webkit-autofill:hover,
    .form-input:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 1000px #fff inset;
        box-shadow: 0 0 0 1000px #fff inset;
        -webkit-text-fill-color: #000;
        caret-color: #000;
        transition: background-color 9999s ease-out, color 9999s ease-out;
    }

    /* Force white background for autofilled fields (Firefox) */
    .form-input:-moz-autofill {
        background-color: #fff !important;
        box-shadow: 0 0 0 1000px #fff inset;
        color: #000;
        caret-color: #000;
    }

    .form-input:focus {
        outline: none;
        border-color: #007AFF;
        box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
    }

    .form-input::placeholder {
        color: #999;
    }

.submit-btn {
    width: 380px;
    height: 48px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .submit-btn:hover {
        background-color: #333;
    }

@media (max-width: 450px) {

    .form-input {
        width: 100%;
        max-width: 380px;
        height: 48px;
        font-size: 16px; /* Важно для iOS Safari */
    }

    .submit-btn {
        width: 100%;
        max-width: 380px;
        height: 48px;
        font-size: 15px;
    }
}
