:root {
    --Neutral-900: #101B30;
    --Neutral-500: #888D98;
    --Neutral-200: #E7E8EA;
    --Primary-Color: #D42B65;
    --Neutral-700: #404959;
}

.error-message {
    font-size: 14px !important;
    margin-top: 5px !important;
    text-align: left !important;
}

input.error {
    border-color: #dc3545 !important;
}

.textfield-1 input:focus-visible,
.textfield-1 .flatpickr-wrapper .date-input:focus-visible,
.textfield-1 select:focus-visible {
    outline: none;
}

.textfield-1 input,
.textfield-1 .flatpickr-wrapper .date-input,
.textfield-1 select {
    height: 48px;
    border-radius: 12px;
    border: 1.5px solid var(--Neutral-200, #E7E8EA);
    padding: 10px 16px;
    background: inherit;
    color: var(--Neutral-900, #101B30);
    width: 100%;
}

.textfield-1 input::placeholder,
.textfield-1 .flatpickr-wrapper .date-input::placeholder,
.textfield-1 select::placeholder {
    color: var(--Neutral-500, #888D98);
}

.input-field::placeholder {
    color: var(--Neutral-500, #888D98) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #D42B65;
    cursor: pointer;
    border: 2px solid #707683 !important;
}

.text-body-sm {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.password-container .styled-input:not(:placeholder-shown)~.password-toggle {
    display: block;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: none;
}

.input-password-label+.input-field+.password-toggle {
    top: calc(55% + 12px);
}

.password-toggle img {
    width: 20px;
    height: 20px;
}

.eye-closed {
    color: #404959 !important;
}

.login-container {
    max-width: 1320px;
    width: 100%;
    min-height: 816px;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 72px 10px;
}

.login-image {
    max-width: 560px;
    max-height: 816px !important;
    height: auto;
    width: 100%;
    object-fit: contain;
}

.text-title-lg {
    font-size: 42px;
    font-weight: 600;
    line-height: 58px;
}

.signin-button {
    padding: 16px 24px;
    border-radius: 12px;
    background: var(--Primary-Color);
    border: none;
    color: #fff;
    height: 52px;
}

.signin-button:hover {
    background: #EE4E86;
}

.signin-button:focus,
.signin-button:focus-visible {
    outline: 3px solid #EEAAC1 !important;
    box-shadow: 0 0 0 3px #EEAAC1 !important;
}

.text-body-lg {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--Neutral-700, #404959);
    opacity: 75%;
}

.login-main-content {
    gap: 40px;
}

.google-signup-btn {
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    color: #3c4043;
    cursor: pointer;
    font-size: 14px;
    height: 48px;
    padding: 0 16px;
    transition: all 0.2s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.google-icon {
    width: 20px;
    height: 20px;
}

.google-signup-btn:hover {
    background-color: #f8f9fa;
    border-color: #c8ccd1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: #3c4043;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    margin-bottom: 42px;
    border: none !important;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    padding: 0 16px;
    color: #666;
    font-size: 14px;
}

.cart-review-container {
    background: #283245;
    border-radius: 16px;
    padding: 20px 20px 42px 20px;
    gap: 12px;
}

.cart-review-wrapper .carousel-indicators {
    bottom: 20px;
    margin: 0px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
}

label.error {
    color: #F93642 !important;
    margin-top: 8px;
}

@media (max-width: 576px) {
    .text-title-lg {
        font-size: 36px;
    }

    .login-main-content {
        gap: 10px !important;
    }
}

