body {
    background-image: url("bg.jpg");
    background-size: cover;
    background-repeat: no-repeat; 
    margin: 0;
    border: 0;
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;  
    display: flex;
    justify-content: center;  
    align-items: center; 
}


.nav_bar {
    color: azure;
    background-color: #009879;
    padding: auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
}

.content {
    display: flex; 
    justify-content: center; 
    align-items: center;
    width: 100%;
}

.loginform {
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    margin-bottom: 5px;
}

.form label, input {
    background-color: white;
    padding: auto;
    border-radius: 5px;
    width: 100%; /* Make input fields take full width of form */
    text-align: left;
    margin-bottom: 5px;
}

.loginform label {
    font-size: 1.5rem;
}

.loginform input {
    font-size: 1.5rem;
}

.loginform button {
    background-color: #009879; 
    color: white;
    cursor: pointer;
    border: none;
    padding: 10px 20px; 
    border-radius: 5px; 
    font-size: 1.5rem; 
    margin: 0 auto;
}

.form {
    align-items: center;
}
