/* =========================================================
   SISKAP LOGIN SCREEN - UHN SSO PROFESSIONAL
   ========================================================= */

body {
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;

    background:url("../img/uhnn.png")
    no-repeat center center/cover;
}

/* KOTAK PUTIH UTAMA (Split Screen Wrapper) */
.main-wrapper {
    border-radius: 30px;
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    max-width: 1100px; /* Diperlebar dikit biar makin lega */
    width: 100%;
    position: relative;
    overflow: hidden;
    color: white; /* Teks default di sisi kiri jadi putih */

}

/* SISI KIRI (FOTO KAMPUS REDUP) */
.left-content {
    background: url('../img/bg_kampus.jpg') no-repeat center center; 
    background-size: cover;
    position: relative;
    min-height: 500px; /* Pastikan tinggi cukup */
}

/* Lapisan Gelap Subtle di atas foto (Biar teks putih redup kebaca) */
.bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17, 24, 39, 0.5); /* Redupkan foto 70% */
}

/* Konten teks di sisi kiri */
.left-text-area {
    position: relative;
    z-index: 1; /* Di atas overlay */
    padding: 60px 40px;
}

/* SISI KANAN (FORM LOGIN BERSIH) */
.right-content {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: transparent;
    width: 100%;
    max-width: 360px; /* Lebar form login diperkecil biar fokus */
}

/* Styling Input & Tombol */
.form-control {
    background-color: #ffffff;
    border: 1px solid #e1e5eb;
    padding: 12px 15px;
    font-size: 0.9rem;
    border-radius: 8px;
    color: #333;
}

.form-control:focus {
    border-color: #4e54c8; /* Warna ungu pas fokus */
    box-shadow: 0 0 0 0.25rem rgba(78, 84, 200, 0.15);
}

.input-group-text {
    background-color: #ffffff;
    border: 1px solid #e1e5eb;
    color: #a0a5aa;
}

/* Tombol Gradient Ungu-Biru (Balikin ke warna SSO lu) */
.btn-login {
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(78, 84, 200, 0.3);
    color: white;
}

@media (max-width: 768px) {

   body {
    min-height: 150vh;
    justify-content:center;
    align-items:center;

    background:url("../img/uhnn.png")
    no-repeat center center/cover;

    padding: 20px 0;
    }

    .main-wrapper {
        border-radius: 20px;
    }

    .right-content {
        padding: 30px 20px;
    }

    .left-text-area {
        padding: 30px 20px;
    }

    .left-content {
        min-height: auto;
    }
}