:root {
    --primary-rgb: 59, 130, 246;
    --brand-primary: #3b82f6;
    --brand-dark: #1e293b;
    --brand-accent: #06b6d4;
    --text-muted: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
}

.auth-fluid .auth-fluid-form-box {
    border-top: none !important;
}

.auth-fluid {
    min-height: 100vh;
    display: flex;
    background-color: #fff;
    overflow-x: hidden;
}

.auth-fluid-right {
    flex: 1;
    background: #0f172a;
    background-color: #222 !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    animation: float 10s ease-in-out infinite;
}

.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: #2563eb; animation-delay: 0s; }
.blob-2 { bottom: -10%; right: -10%; width: 400px; height: 400px; background: #06b6d4; animation-delay: -5s; }
.blob-3 { top: 40%; left: 40%; width: 300px; height: 300px; background: #4f46e5; opacity: 0.4; animation-delay: -2s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.brand-box {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 450px;
    transition: transform 0.4s ease;
}

.brand-box:hover {
    transform: translateY(-5px);
}

.login-mark {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fff, #e2e8f0);
    color: var(--brand-primary);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
}

.brand-box:hover .login-mark {
    transform: scale(1.15) rotate(-10deg);
    background: white;
    color: var(--brand-primary);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.auth-fluid-form-box {
    flex: 0 0 500px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    z-index: 2;
    box-shadow: -5px 0 25px rgba(0,0,0,0.03);
}

.recover-card {
    width: 100%;
    max-width: 380px;
}

.welcome-text h3 {
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}

.input-group {
    overflow: visible;
}

.custom-input-group .input-group-text {
    background-color: transparent;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: #94a3b8;
    transition: all 0.3s;
    z-index: 2;
}

.custom-input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;
    padding: 11px 12px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    transition: all 0.3s;
    z-index: 3;
}

.custom-input-group .form-control:focus {
    outline: none;
    box-shadow: none;
    background-color: #fff;
}

.custom-input-group:focus-within .input-group-text {
    border-color: var(--brand-primary);
    background-color: #fff;
    color: var(--brand-primary);
    box-shadow: -4px 0 0 0 rgba(var(--primary-rgb), 0.1), 0 4px 0 0 rgba(var(--primary-rgb), 0.1), 0 -4px 0 0 rgba(var(--primary-rgb), 0.1);
}

.custom-input-group:focus-within .form-control {
    border-color: var(--brand-primary);
    background-color: #fff;
    box-shadow: 4px 0 0 0 rgba(var(--primary-rgb), 0.1), 0 4px 0 0 rgba(var(--primary-rgb), 0.1), 0 -4px 0 0 rgba(var(--primary-rgb), 0.1);
}

.btn-glow {
    position: relative;
    background: linear-gradient(90deg, var(--brand-primary), #2563eb, var(--brand-accent), var(--brand-primary));
    background-size: 300% 100%;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}

.btn-glow:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(59, 130, 246, 0.4);
}

@media (max-width: 992px) {
    .auth-fluid-right { display: none; }
    .auth-fluid-form-box { flex: 1; width: 100%; padding: 20px; }
    .logo-mob { display: block !important; margin-bottom: 2rem; }
    .logo-mob img { width: 150px; }
}
@media (min-width: 993px) {
    .logo-mob img {     width: 75%; margin-bottom: 10%; }
}