/* --- Modern Auth Light Mode --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f0f4f8; /* Samakan dengan background dashboard */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #2d3748;
}

.container {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(to right, #4776e6, #8e54e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#messageDiv, #message {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    min-height: 20px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 15px;
    background-color: #f8fafc;
    box-sizing: border-box;
    transition: 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #4776e6;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(71, 118, 230, 0.1);
}

button {
    background: #4776e6;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

button:hover {
    background: #365fcf;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(71, 118, 230, 0.2);
}

/* Footer Link */
p {
    margin-top: 25px;
    font-size: 14px;
    color: #718096;
}

a {
    color: #4776e6;
    text-decoration: none;
    font-weight: 700;
}

a:hover {
    text-decoration: underline;
}

/* Warna Pesan */
.error { color: #ef4444; }
.success { color: #10b981; }