.main-site-header {
    display: none
}

.top-promo-bar {
    display: none
}

.newsletter-signup-section {
    display: none
}

.img-wrap {
    width: 140px;
    margin: auto;
}

section.box-footer-section-member {
    display: none
}

.form-login .info {
    /* background: linear-gradient(0deg, var(--color-3), var(--color-4)); */
    background: var(--color-3);
    background: linear-gradient(to right, #d3e3e2 0%, #f9f9f7 100%);
    color: #9c8b7c;
    border: solid 1px #9c8b7cab;
    border-radius: 25px;
    padding: 10px;
}

.form-login form {
    padding: 10px 20px;
}

.form-login .header-title {
    text-align: center;
    color: #9c8b7c;
    padding: 0px 0px 10px 0px;
    border-radius: 10px 10px 0 0;
}

.form-login .header-title h1 {
    font-size: 25px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.form-login {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    margin: 20px auto 40px;
    overflow: hidden;
    display: grid;
    border-radius: 25px;
    grid-template-columns: repeat(1, 1fr);
}

.form-login .img-wrap img {
    /* height: 445px; */
    /* object-fit: cover; */
    /* width: 100%; */
    margin: auto;
    text-align: center;
    /* display: block; */
}

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

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

.required {
    color: #e74c3c;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 8px 12px 16px;
    background: #FFF;
    transition: border-color 0.3s ease;
}

.input-with-icon:focus-within {
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.input-with-icon svg {
    margin-right: 12px;
    color: #9c8b7c;
    flex-shrink: 0;
}

.input-with-icon input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: #333;
    background: transparent;
    width: 100%;
}

.input-with-icon input::placeholder {
    color: #999;
}

.toggle-password-eye {
    cursor: pointer;
    margin-left: 8px;
    color: #666;
    transition: color 0.3s ease;
}

.error {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    color: var(--color-3);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.submit-btn {
    width: 100%;
    background: #9c8b7c;
    color: #FFF;
    border: none;
    border-radius: 25px;
    padding: 14px 20px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: solid 1px #9c8b7c;
    cursor: pointer;
}

.submit-btn:hover {
    background: #9c8b7c;
    transform: translateY(-1px);
}

.form-footer {
    text-align: center;
    color: #9c8b7c;
    font-size: 15px;
    margin-top: 20px;
}

.form-footer a {
    /* color: var(--color-3); */
    color: #9c8b7c;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-group .agree_checkbox {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.social-login {
    margin-top: 20px;
}

.divider-text {
    position: relative;
    text-align: center;
    margin: 20px 0;
    color: #9ca3af;
    font-size: 14px;
}

.divider-text::before,
.divider-text::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #9c8b7c;
}

.divider-text::before {
    left: 0;
}

.divider-text::after {
    right: 0;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    background: #ffffff !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 50px;
    padding: 12px;
    color: #4b5563 !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-sizing: border-box;
    box-shadow: none !important;
    margin: auto;
}

.btn-google:hover {
    background: #f9fafb !important;
    border-color: #d1d5db !important;
    transform: translateY(-1px);
}

.btn-google img {
    width: 20px;
    height: 20px;
    margin-right: 0;
}

@media (max-width: 768px) {
    .form-login {
        grid-template-columns: repeat(1, 1fr);
    }

    .form-login .img-wrap {
        max-height: 250px;
    }

    .form-login .img-wrap img {
        width: 100%;
        height: 100%;
    }
}

.remember-forgot-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #9c8b7c;
}

.remember-me label {
    margin-bottom: 0 !important;
    color: #9c8b7c !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer;
    user-select: none;
}

.remember-forgot-container .forgot-password {
    margin-bottom: 0;
    text-align: right;
}

.remember-forgot-container .forgot-password a {
    color: #9c8b7c;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.remember-forgot-container .forgot-password a:hover {
    color: #9c8b7c;
}