/* Authentication Pages CSS - Gulio */
/* Author: Yatosha Web Services */
/* Company: Webline Africa Limited */

.login-section {
        background: linear-gradient(135deg, #eef3ff 0%, #f7f9ff 100%);
        min-height: calc(100vh - 160px);
        display: flex;
        align-items: center;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .login-card {
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
        overflow: hidden;
    }
    .login-card .logo-section h3 {
        font-weight: 700;
        color: #0f172a;
    }
    .login-card .logo-section p {
        color: #636a7d;
        margin-bottom: 1.5rem;
    }
    .login-card .form-label {
        font-weight: 600;
        color: #0f172a;
    }
    .login-card .form-control {
        border-radius: 12px;
        padding: 0.75rem 1rem;
        border-color: #d7dce5;
    }
    .login-card .btn-primary {
        padding: 0.85rem;
        font-weight: 600;
        border-radius: 12px;
    }
    .password-toggle {
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        cursor: pointer;
        color: #64748b;
    }
    .divider {
        position: relative;
        text-align: center;
        margin: 2.5rem 0 1.5rem;
    }
    .divider::before,
    .divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40%;
        height: 1px;
        background: #e2e8f0;
    }
    .divider::before { left: 0; }
    .divider::after { right: 0; }
    .divider span {
        display: inline-block;
        padding: 0 1rem;
        background: #fff;
        color: #717b91;
        font-size: 0.95rem;
    }
    .btn-social {
        border: 1px solid #d7dce5;
        border-radius: 12px;
        padding: 0.75rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        color: #0f172a;
        background: #fff;
    }
    .back-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1.2rem;
        border-radius: 999px;
        border: 1px solid #d7dce5;
        color: #0f172a;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    .back-link:hover {
        background: #eef3ff;
        border-color: #b7c2d9;
        color: #0f172a;
    }
    .back-link i {
        color: #4f5e77;
    }
    @media (max-width: 768px) {
        .login-section {
            min-height: auto;
            padding-top: 4rem;
            padding-bottom: 4rem;
        }
    }

    /* Registration */

    .auth-hero {
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
        padding: 5rem 0 3.5rem;
        color: #ffffff;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .auth-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.12), transparent 55%),
            radial-gradient(circle at 80% 75%, rgba(255, 255, 255, 0.12), transparent 55%);
        pointer-events: none;
    }
    .auth-hero .container {
        position: relative;
        z-index: 1;
    }
    .auth-breadcrumb {
        display: inline-flex;
        padding: 0.65rem 1.5rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(8px);
        margin-bottom: 1.5rem;
    }
    .auth-breadcrumb .breadcrumb {
        margin-bottom: 0;
        background: transparent;
        padding: 0;
    }
    .auth-breadcrumb .breadcrumb-item,
    .auth-breadcrumb .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.88);
        font-weight: 500;
        text-decoration: none;
    }
    .auth-breadcrumb .breadcrumb-item.active {
        color: #ffffff;
    }
    .auth-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.5);
    }
    .auth-hero h1 {
        font-weight: 700;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .auth-hero p {
        color: rgba(255, 255, 255, 0.82);
        max-width: 560px;
        margin: 0 auto;
        font-size: 1.05rem;
    }
    .register-section {
        background: linear-gradient(135deg, #f0f4ff 0%, #f8f9ff 100%);
        min-height: calc(100vh - 160px);
        display: flex;
        align-items: center;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .register-card {
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
        overflow: hidden;
    }
    .register-card .logo-section h3 {
        font-weight: 700;
        color: #0f172a;
    }
    .register-card .logo-section p {
        color: #636a7d;
        margin-bottom: 1.5rem;
    }
    .register-card .form-label {
        font-weight: 600;
        color: #0f172a;
    }
    .register-card .form-control,
    .register-card .form-select {
        border-radius: 12px;
        padding: 0.75rem 1rem;
        border-color: #d7dce5;
    }
    .register-card .btn-primary {
        padding: 0.85rem;
        font-weight: 600;
        border-radius: 12px;
    }
    .password-toggle {
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        cursor: pointer;
        color: #64748b;
    }
    .divider {
        position: relative;
        text-align: center;
        margin: 2.5rem 0;
    }
    .divider::before,
    .divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40%;
        height: 1px;
        background: #e2e8f0;
    }
    .divider::before { left: 0; }
    .divider::after { right: 0; }
    .divider span {
        display: inline-block;
        padding: 0 1rem;
        background: #fff;
        color: #717b91;
        font-size: 0.95rem;
    }
    .btn-social {
        border: 1px solid #d7dce5;
        border-radius: 12px;
        padding: 0.75rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        color: #0f172a;
        background: #fff;
    }
    .back-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1.2rem;
        border-radius: 999px;
        border: 1px solid #d7dce5;
        color: #0f172a;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    .back-link:hover {
        background: #eef3ff;
        border-color: #b7c2d9;
        color: #0f172a;
    }
    .back-link i {
        color: #4f5e77;
    }
    @media (max-width: 768px) {
        .auth-hero {
            padding: 4rem 0 2.5rem;
        }
        .auth-hero h1 {
            font-size: 2rem;
        }
        .auth-breadcrumb {
            padding: 0.5rem 1.2rem;
        }
        .register-section {
            min-height: auto;
            padding-top: 4rem;
            padding-bottom: 4rem;
        }
    }