/* File: assets/css/signin.css */
/* Deskripsi: Styling untuk halaman login dan daftar akun. */

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
    background-color: #f0f8ff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Logo transparan sebagai background tengah */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    /* Path disesuaikan agar relatif terhadap root proyek */
    background: url('../img/bg-logo.jpg') no-repeat center center;
    background-size: 300px;
    opacity: 0.06; /* Makin kecil = makin transparan */
    z-index: -1;
}

.login-container {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
    text-align: center;
}

.login-logo {
    width: 80px;
    margin-bottom: 40px;
}

.login-box h2 {
    margin: 0;
    color: #333;
}

.login-box p {
    margin: 5px 0 20px;
    font-size: 14px;
    color: #666;
}

.login-box input[type="text"],
.login-box input[type="password"],
.login-box select { /* Menambahkan styling untuk select */
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

.login-box button {
    width: 100%;
    padding: 12px;
    background: #4facfe;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-box button:hover {
    background: #00c6ff;
}

.show-password {
    text-align: left;
    font-size: 13px;
    margin-bottom: 15px;
}

.alert {
    background: #ffdddd;
    color: #d8000c;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
}
