/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Full Page Background */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full height */
    background-color: #0A1F44; /* Dark Blue */
    color: #FFFFFF; /* White text */
}

/* Login Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

/* Login Box */
.login-box {
    background: #FFFFFF; /* White box */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
}

/* Login Title */
.login-box h2 {
    color: #0A1F44; /* Dark Blue */
    margin-bottom: 20px;
}

/* Form Group */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

/* Labels */
.form-group label {
    font-size: 14px;
    font-weight: bold;
    color: #343A40; /* Dark Gray */
    display: block;
    margin-bottom: 5px;
}

/* Input Fields */
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #0A1F44; /* Dark Blue Border */
    border-radius: 5px;
    font-size: 14px;
    color: #343A40; /* Dark Text */
    background: #F8F9FA; /* Light Gray Background */
}

/* Button */
.primary-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    background-color: #FF6A00; /* Primary Orange */
    color: white;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.primary-button:hover {
    background-color: #D45500; /* Darker Orange */
}

/* Error Message */
.error-message {
    color: #DC3545; /* Red */
    font-size: 14px;
    margin-bottom: 10px;
}
