
/* ==========================================
   Innqora Authentication Pages
   Login / Register / Register Hotel
   ========================================== */
.auth-page {
    min-height: calc(100vh - 70px);
    background: #f6f8fb;
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.auth-wrapper {
    width: 100%;
    max-width: 1050px;
    margin: auto;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
}

.auth-image {
    min-height: 650px;
    background: linear-gradient(135deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .65)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1200&q=85') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 45px;
    color: #fff;
}

.auth-image-content {
    position: relative;
    z-index: 2;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
}

.auth-image h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 15px;
}

.auth-image p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .88);
    max-width: 430px;
    margin: 0;
}


/* ==========================================
   Form Section
   ========================================== */

.auth-form-section {
    min-height: 650px;
    padding: 55px 50px;
    display: flex;
    align-items: center;
}

.auth-form {
    width: 100%;
    max-width: 410px;
    margin: auto;
}

.auth-title {
    font-size: 30px;
    font-weight: 700;
    color: #172033;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: #7a8496;
    font-size: 15px;
    margin-bottom: 30px;
}


/* ==========================================
   Inputs
   ========================================== */

.auth-label {
    font-size: 14px;
    font-weight: 600;
    color: #344054;
    margin-bottom: 8px;
}

.auth-input-group {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #98a2b3;
    z-index: 5;
}

.auth-input {
    height: 52px;
    border-radius: 12px !important;
    border: 1px solid #d9dee8;
    padding-left: 45px;
    font-size: 15px;
    transition: all .2s ease;
}

    .auth-input:focus {
        border-color: #6366f1;
        box-shadow: 0 0 0 4px rgba(99, 102, 241, .10);
    }


/* ==========================================
   Password
   ========================================== */

.auth-password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #98a2b3;
    cursor: pointer;
    z-index: 5;
}


/* ==========================================
   Buttons
   ========================================== */

.auth-button {
    height: 52px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient( 135deg, #6366f1, #4f46e5 );
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all .2s ease;
    box-shadow: 0 8px 20px rgba(79, 70, 229, .20);
}

    .auth-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 25px rgba(79, 70, 229, .28);
        color: #fff;
    }


/* ==========================================
   Alerts
   ========================================== */

.auth-info {
    border: 0;
    border-radius: 12px;
    background: #eef4ff;
    color: #315a9e;
    font-size: 13px;
    padding: 13px 15px;
    margin-bottom: 20px;
}

.auth-error {
    border: 0;
    border-radius: 12px;
    font-size: 13px;
    padding: 13px 15px;
    margin-bottom: 20px;
}


/* ==========================================
   Bottom Links
   ========================================== */

.auth-links {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #eef0f4;
    color: #667085;
    font-size: 14px;
    line-height: 2;
}

    .auth-links a {
        color: #4f46e5;
        font-weight: 600;
        text-decoration: none;
    }

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


/* ==========================================
   Remember Me
   ========================================== */

.auth-remember {
    display: flex;
    align-items: center;
    margin: 18px 0 25px;
}

    .auth-remember .form-check {
        margin: 0;
    }

    .auth-remember .form-check-input {
        width: 18px;
        height: 18px;
        margin-top: 0;
        cursor: pointer;
    }

    .auth-remember .form-check-label {
        margin-left: 5px;
        color: #667085;
        font-size: 14px;
        cursor: pointer;
    }


/* ==========================================
   Validation
   ========================================== */

.auth-validation {
    font-size: 13px;
    margin-top: 5px;
}


/* ==========================================
   Mobile
   ========================================== */

@media (max-width: 767.98px) {

    .auth-page {
        padding: 20px 15px;
        align-items: flex-start;
    }

    .auth-wrapper {
        border-radius: 18px;
    }

    .auth-image {
        min-height: 230px;
        padding: 28px;
        align-items: flex-end;
    }

        .auth-image h1 {
            font-size: 26px;
            margin-bottom: 8px;
        }

        .auth-image p {
            display: none;
        }

    .auth-brand {
        margin-bottom: 10px;
    }

    .auth-form-section {
        min-height: auto;
        padding: 35px 25px;
    }

    .auth-title {
        font-size: 26px;
    }
}

```
