.auth-card,
.checkout-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.checkout-card {
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.auth-card h4,
.checkout-card h4 {
    color: #222;
    font-weight: 700;
}

.auth-card .form-label,
.checkout-card .form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"],
.auth-card input[type="tel"],
.auth-card .form-control,
.checkout-card input[type="text"],
.checkout-card input[type="email"],
.checkout-card input[type="password"],
.checkout-card input[type="tel"],
.checkout-card textarea,
.checkout-card .form-control {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #222 !important;
    background-color: #fff !important;
    background-image: none !important;
    border: 1px solid #cfcfcf !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    margin-bottom: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-card textarea {
    min-height: 96px;
    resize: vertical;
}

.auth-card input[type="text"]:focus,
.auth-card input[type="email"]:focus,
.auth-card input[type="password"]:focus,
.auth-card input[type="tel"]:focus,
.auth-card .form-control:focus,
.checkout-card input[type="text"]:focus,
.checkout-card input[type="email"]:focus,
.checkout-card input[type="password"]:focus,
.checkout-card input[type="tel"]:focus,
.checkout-card textarea:focus,
.checkout-card .form-control:focus {
    color: #111 !important;
    background-color: #fff !important;
    border-color: #bd9563 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(189, 149, 99, 0.15) !important;
}

.auth-card input::placeholder,
.checkout-card input::placeholder,
.checkout-card textarea::placeholder {
    color: #999;
    opacity: 1;
}

.auth-card p,
.auth-card a {
    color: #555;
}

.auth-card a {
    color: #bd9563;
    font-weight: 600;
    text-decoration: none;
}

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

.auth-card .button-1 {
    margin-top: 8px;
}
