/* Base Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('../asset/image/Login.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

/* Overlay for better readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.26);
    z-index: -1;
}

/* Login Container */
.login-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Typography */
.login-box h2 {
    margin: 0 0 25px;
    text-align: center;
    color: #222;
    font-weight: 600;
}

.error_message{
    color: red;
}

/* Form Elements */
.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 15px;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #4285f4;
    outline: none;
}

button {
    width: 100%;
    padding: 12px;
    background: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

button:hover {
    background: #3367d6;
}

/* Links */
.footer-links {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #4285f4;
}