/*:root {
    --primary-color: #4f46e5;
    --secondary-color: #818cf8;
    --success-color: #22c55e;
    --error-color: #ef4444;
    --text-color: #1f2937;
    --bg-color: #f3f4f6;
}*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-image: url("../../media/logos/logo/login-bg-2.png");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff6ed;
    padding: 20px;
    overflow: hidden; */
}

.auth-container {
    /* background-image: url("../image/login-bg.png"); */
    width: 100%;
    max-width: 900px;
  /*  min-height: 600px;*/
    display: flex;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    /* background: white; */
}

.auth-sidebar {
    width: 50%;
    background-image: url(../../media/logos/logo/login-side-image-2.png);
    padding: 40px;
    background-size: cover;
    background-repeat: no-repeat;
}
    .auth-sidebar.sign-in {
        background-image: url(../../media/logos/logo/login-side-image-3.png);
    }

    .auth-sidebar h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

.auth-main:before {
    content: "";
    background: #F9AE86;
    width: 7px;
    height: 100%;
    position: absolute;
    z-index: 0;
    right: -6px;
    bottom: 0;
    opacity: 0.5;
}

.auth-main {
    width: 50%;
    padding: 40px;
    background: #f26f3b;
    position: relative;
}

.auth-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    /* margin-bottom: 30px; */
}

    .form-header img {
        max-width: 180px;
    }

    .form-header h1 {
        font-size: 2em;
        color: #ffffff;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

.social-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.social-button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #f3f4f6;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .social-button:hover {
        background: #e5e7eb;
        transform: translateY(-2px);
    }

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

    .divider::before,
    .divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 45%;
        height: 1px;
        background: #e5e7eb;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

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

.form-control {
    width: 100%;
    padding: 12px 15px 12px 45px !important;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: white;
}

    .form-control:focus {
        border-color: #f4864f;
        /* box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1); */
        outline: none;
    }

.input-icon {
    position: absolute;
    left: 4%;
    top: 33%;
    /* transform: translateY(-50%); */
    color: #9ca3af;
}

.icon-password-lock {
    position: absolute;
    left: 4%;
    top: 33%;
    /* transform: translateY(-50%); */
    color: #9ca3af;
}

.password-toggle {
    position: absolute;
    right: 5%;
    top: 33%;
    /* transform: translateY(-50%); */
    cursor: pointer;
    color: #9ca3af;
}

.password-strength {
    height: 4px;
    background: #e5e7eb;
    margin-top: 8px;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.85em;
    margin-top: 5px;
    color: #6b7280;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #F9AE86;
    color: white !important;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
}

    .submit-btn:hover {
        background: transparent;
        border: 1px solid #ffffff;
    }

    .submit-btn .loader {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: none;
    }

.error-message,
.success-message {
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    display: none;
    animation: slideIn 0.3s ease;
}

.error-message {
    background: #fee2e2;
    color: var(--error-color);
    border: 1px solid #fecaca;
}

.success-message {
    background: #dcfce7;
    color: var(--success-color);
    border: 1px solid #bbf7d0;
}

.otp-container {
    display: none;
    margin-top: 20px;
}

.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.2em;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
}

.terms {
    font-size: 0.9em;
    color: #6b7280;
    margin-top: 20px;
    text-align: center;
}

.switch-form {
    text-align: center;
    margin-top: 20px;
    color: #ffffff;
}

    .switch-form a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
    }

        .switch-form a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shake {

    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-sidebar {
        width: 100%;
        padding: 20px;
        min-height: 200px;
    }

    .auth-main {
        width: 100%;
    }
}

/* Additional Animations */
.slide-up {
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Custom Checkbox Style */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .custom-checkbox.checked {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .custom-checkbox i {
        color: white;
        font-size: 12px;
        display: none;
    }

    .custom-checkbox.checked i {
        display: block;
    }
a.sub-btn {
    text-decoration: none!important;
}
a.sub-btn:hover {
    text-decoration: underline!important;
}
.forgotPassword {
    padding-top: 15px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* shapes css */

/* .shape1,
.shape2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.shape1 {
    top: -7rem;
    left: -3.5rem;
    background: linear-gradient(180deg, #e24814 0%, rgba(196, 196, 196, 0) 100%);
}

.shape2 {
    bottom: -6rem;
    right: -5.5rem;
    background: linear-gradient(180deg, #e24814 0%, rgba(196, 196, 196, 0) 100%);
    transform: rotate(180deg);
} */

@media screen and (min-width: 968px) {
    .shape1 {
        width: 400px;
        height: 400px;
        top: -11rem;
        left: -6.5rem;
    }

    .shape2 {
        width: 300px;
        height: 300px;
        right: -6.5rem;
    }
}



/* height css-class */

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

/* margin-bottom css class */

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 0.75rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 1.25rem !important;
}

.mb-6 {
    margin-bottom: 1.5rem !important;
}

.mb-7 {
    margin-bottom: 1.75rem !important;
}

.mb-8 {
    margin-bottom: 2rem !important;
}

.mb-9 {
    margin-bottom: 2.25rem !important;
}

.mb-10 {
    margin-bottom: 2.5rem !important;
}
