html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Hilangkan scroll */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.row.g-0.min-vh-100 {
    height: 100vh; /* isi penuh layar */
    overflow: hidden;
}

/* Panel kiri */
.left-panel {
    background: url('../img/main/cover.jpg') center center / cover no-repeat;
    position: relative;
}

.left-overlay {
    background: rgba(0, 0, 0, 0.55);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.app-logo {
    position: absolute;
    top: 20px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.app-logo img {
    height: 70px;
}

/* Wrapper */
.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Card */
.login-card {
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

/* Judul */
.login-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    text-align: center;
}

.login-subtitle {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

/* Input */
.form-label {
    font-weight: 500;
    margin-bottom: 5px;
}

.login-input {
    border-radius: 6px;
    font-size: 1rem;
    height: 44px;
}

/* Tombol */
.login-btn {
    background-color: #125d72;
    border: 2px solid #125d72;
    color: #fff;
    border-radius: 6px;
    padding: 10px 0;
    font-size: 1.05rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.login-btn:hover,
.login-btn:focus {
    background-color: #fff;
    border-color: #125d72;
    color: #125d72 !important;
    outline: none;
    box-shadow: 0 0 0 2px #125d72;
}

.btn:focus,
.btn:active,
.login-btn:focus,
.login-btn:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Link */
.forgot-link,
.create-account {
    font-size: 0.9rem;
    color: #125d72;
    text-decoration: none;
}

.terms-text {
    font-size: 0.85rem;
    color: #555;
}

.terms-text a {
    color: #0066cc;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .left-panel {
        display: none;
    }
}
