a {
    text-decoration: none;
}

.heading-1 {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-size: 40px;
}

.heading-2 {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 32px;
}

.heading-6 {
    font-size: 18px;
    font-weight: 500;
}

.auth-hero-panel {
    background-size: cover;
    background-position: center;
}

.auth-hero-logo {
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.auth-form-panel {
    position: relative;
    background: #fff;
}

.form-wrapper .heading {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--brand-primary-deep, #7A5E10);
}

.form-wrapper .description {
    font-size: 14px;
    color: #5b5a5a;
    font-weight: 400;
}

.form-wrapper input {
    border: 1px solid #e8eaef;
    border-radius: 8px;
    outline: none !important;
    box-shadow: none;
    font-size: 14px;
    height: 44px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-wrapper input:focus {
    border: 1.5px solid var(--brand-primary, #C9A227);
    box-shadow: 0 0 0 3px var(--brand-shadow-soft, rgba(201, 162, 39, 0.12));
    height: 44px;
}

.form-wrapper select {
    border: 1px solid #e8eaef;
    border-radius: 8px;
    outline: none !important;
    box-shadow: none;
    font-size: 14px;
    height: 44px;
}

.form-wrapper select:focus {
    border: 1.5px solid var(--brand-primary, #C9A227);
    box-shadow: 0 0 0 3px var(--brand-shadow-soft, rgba(201, 162, 39, 0.12));
    height: 44px;
}

.form-check-input {
    font-size: 14px;
    height: 20px !important;
    width: 20px !important;
    border-radius: 10% !important;
    margin-right: 5px !important;
}

.form-check-input:checked {
    background-color: var(--brand-primary, #C9A227) !important;
    border-color: var(--brand-primary, #C9A227) !important;
    border-radius: 10% !important;
}

.form-wrapper .gender-input {
    font-size: 14px;
    border: 1px solid #dadada;
    padding: 7px 10px;
}

.form-wrapper .show-password-btn {
    top: 2px;
    z-index: 1000;
    border: none;
    color: var(--brand-primary-dark, #8B6914);
    right: 0;
    position: absolute;
}

.form-wrapper .otp-error {
    font-size: 0.75em;
    color: #f5325c;
    font-weight: 500;
}

.form-wrapper .float-right-custom {
    float: right;
    text-align: right;
    font-size: 13px;
    font-weight: 500;
}

.form-wrapper .float-right-custom a {
    color: var(--brand-primary-dark, #8B6914);
}

.form-wrapper .float-right-custom a:hover {
    color: var(--brand-primary, #C9A227);
}

.btn-brand {
    background: var(--brand-gradient, linear-gradient(120deg, #DDB830, #8B6914));
    border: none;
    color: #fff;
    height: 44px;
    border-radius: 10px;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.btn-brand:hover {
    color: #fff;
    box-shadow: 0 4px 14px var(--brand-shadow, rgba(201, 162, 39, 0.35));
    transform: translateY(-1px);
}

.custom-btn {
    padding: 8px;
    border: 1px solid #dadada !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    background-color: white;
}

.custom-btn:hover {
    color: white;
    background: var(--brand-gradient, linear-gradient(120deg, #DDB830, #8B6914));
    border-color: transparent !important;
}

.nav-tabs .nav-link {
    background-color: #f8f9fa;
    color: #555;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: var(--brand-gradient, linear-gradient(120deg, #DDB830, #8B6914));
    color: white;
    border: none;
    box-shadow: 0 4px 8px var(--brand-shadow-soft, rgba(201, 162, 39, 0.2));
}

.nav-tabs .nav-link:hover {
    background-color: var(--brand-primary-soft, #F5EDD4);
    color: var(--brand-primary-deep, #7A5E10);
}

.tab-content {
    background-color: #fff;
    border: 1px solid #eef0f4;
    border-radius: 8px;
}

.footer-links {
    font-weight: 500;
    font-size: 13px;
    position: absolute;
    bottom: 20px;
}

.footer-links a {
    color: #5b5b5b;
}

.footer-links a:hover {
    color: var(--brand-primary, #C9A227);
}

.alert {
    padding: 10px;
    border-radius: 8px;
}

.alert h6 {
    font-size: 14px;
    margin-bottom: 0px;
}

.alert p {
    font-size: 12px;
    margin-bottom: 0px;
}

.bg-light-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.bg-light-danger {
    background-color: #f8d7da;
    color: #842029;
}

.bg-light-info {
    background-color: #cff4fc;
    color: #055160;
}

.form-wrapper {
    padding: 0rem 1rem;
}

@media (min-width: 576px) {
    .form-wrapper {
        padding: 0rem 3rem;
    }
}

@media (min-width: 768px) {
    .form-wrapper {
        padding: 0rem 3rem;
    }
}

@media (min-width: 992px) {
    .form-wrapper {
        padding: 0rem 7rem;
    }
}

.auth-btn-with-social a {
    background: var(--brand-primary-deep, #7A5E10);
    color: white;
}

.auth-btn-with-social a:hover {
    background: var(--brand-primary, #C9A227);
    color: white;
}
