* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.login-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 40px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 8px;
    color: red;
}
.login-header h2 {
 
    color: rgb(9, 32, 109);
}

.login-header p {
    color: #666;
    font-weight: 300;
}
.login-header img {
    width:50px;
    height: 45px;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

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

.form-group input:focus {
    border-color: #4a90e2;
    outline: none;
}

.login-button {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #041c38;
}

.message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.message.error {
    background-color: #ffebee;
    color: #d32f2f;
    display: block;
}

.message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    display: block;
}
.footer{
    margin:auto;
    height: 20px;
}
