/* public/css/login.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f8ff;
}

.login-container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

/* Bagian Kiri: Formulir */
.login-form {
    flex-basis: 40%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
}

.form-wrapper {
    width: 100%;
    max-width: 350px;
}

.logo {
    height: 35px;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.input-group input[type="text"],
.input-group input[type="password"] {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Penting */
}

.options {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.options input[type="checkbox"] {
    margin-right: 8px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #007bff;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-login:hover {
    background: #0056b3;
}

/* Bagian Kanan: Gambar Splash */
.login-splash {
    flex-basis: 60%;
    background-image: url('../images/latar belakang.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.login-splash h2 {
    font-size: 2.5rem;
    color: white;
    padding: 20px;
    border: 2px solid white;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}