/* KooZone Modern Login CSS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.kz-login-wrapper {
    display: flex; max-width: 1100px; margin: 50px auto;
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
}

/* Left Side Banner */
.kz-login-banner { flex: 1.1; background: #fdfbff; display: flex; align-items: center; justify-content: center; padding: 20px; }
.kz-login-banner img { width: 100%; max-width: 500px; transition: 0.5s; }
.kz-login-banner img:hover { transform: scale(1.03); }

/* Right Side Form */
.kz-login-form-area { flex: 1; padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.kz-login-title { font-size: 32px; color: #333; font-weight: 800; margin-bottom: 10px; }
.kz-login-sub { color: #777; margin-bottom: 35px; }

.kz-login-input-group { margin-bottom: 25px; }
.kz-login-input { 
    width: 100%; padding: 15px 0; border: none; border-bottom: 2px solid #eee; 
    font-size: 16px; outline: none; transition: 0.3s;
}
.kz-login-input:focus { border-bottom-color: #6A1B9A; }

.kz-login-btn { 
    width: 100%; padding: 16px; background: #6A1B9A; color: white; border: none; 
    border-radius: 10px; font-size: 16px; font-weight: bold; cursor: pointer;
    transition: 0.3s; margin-top: 20px;
}
.kz-login-btn:hover { background: #4a148c; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(106,27,154,0.2); }

.kz-signup-text { margin-top: 30px; text-align: center; color: #666; font-size: 14px; }
.kz-signup-link { color: #6A1B9A; font-weight: bold; text-decoration: none; }
.kz-signup-link:hover { text-decoration: underline; }

/* Responsive for Mobile */
@media (max-width: 850px) {
    .kz-login-wrapper { flex-direction: column; margin: 20px; }
    .kz-login-banner { padding: 40px 20px; }
    .kz-login-form-area { padding: 40px 30px; }
    .kz-login-title { font-size: 26px; }
}

.kz-login-step {
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}
.kz-label-mini { font-size:11px; font-weight:700; color:#999; text-transform:uppercase; display:block; margin-bottom:5px; }