/* ========== Reset & Background ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: url('/coba/assets/images/bg-01.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========== Login Box ========== */
.login-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    width: 360px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

/* ========== Form Elements ========== */
.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.login-box input[type="text"]:focus,
.login-box input[type="password"]:focus {
    border-color: #2e5ab9;
    outline: none;
}

/* ========== Button ========== */
.login-box input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #2e5ab9;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-box input[type="submit"]:hover {
    background-color: #2e5ab9;
}

/* ========== Link ========== */
.login-box a {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #2e5ab9;
    text-decoration: none;
    font-size: 14px;
}

.login-box a:hover {
    text-decoration: underline;
}

/* ========== Error Message ========== */
.login-box .message {
    color: red;
    text-align: center;
    margin-bottom: 15px;
}

.site-title {
    text-align: center;
    margin-bottom: 30px;
    margin-right: 30px;
    color: #2e5ab9; /* warna hijau tombol login, bisa ganti ke biru kalau mau */
}

.site-title h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.site-title h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}