body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    margin: 0;
}

.container {
    width: 400px;
    background: #d9d9d9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden; /* Ensures child elements fit properly */
}


.form-container {
    display: flex;
    flex-direction: column;
}

.heading {
    background: #08519e;
    color: white;
    text-align: center;
    padding: 3%;
    font-size: 1em;
}

.login {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.login input {
    width: 94%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 25px;
}


.login .btn-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.login button {
    width: 50%; /* Adjust width to make it smaller */
    padding: 10px;
    background: #08519e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}


.login button:hover {
    background: #0056b3;
}

.login label {
    font-size: 1.1em;
    color: #004083;
    font-family: Arial, Helvetica, sans-serif;

}

.info {
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
    border-top: 1px solid #ffffff;
}

.info a {
    color: #007BFF;
    text-decoration: none;
}

.info a:hover {
    text-decoration: underline;
}

nav {
    width: 100%;
    background: #08519e;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
}

footer {
    background: #08519e;
    width: 100%;
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
}