/* public/css/login-style.css */
body {
    font-family: sans-serif;
    background: #dcdcdc; /* Warna background abu-abu seperti di aplikasi lama */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-box {
    background: white;
    width: 350px;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    border-top: 5px solid #007bff; /* Garis biru di atas kotak */
}

.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

.login-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #666;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Agar padding tidak melebarkan kotak */
}

.login-box button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.login-box button:hover {
    background: #0056b3;
}

.error {
    background: #ffcccc;
    color: red;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}