/* Add these styles to your existing CSS */

.loginDiv {
    text-align: center;
    font-size:larger;
}

/* Style for the form */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Style for the labels */
label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

/* Style for the input fields */
input[type="text"],
input[type="password"],
input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #007bff;
}

#upperContainer {
    width: 50%;
    padding: 1%;
}



.footer > p {
    display:inline-block;
    margin-block-start: 0em;
    margin-block-end: 0em;
}