body {
    font-family: Arial, sans-serif;
    background: rgb(224, 170, 19);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 300px;
}

header {
    text-align: center;
    padding: 20px;
    background: #1e1e1e;
    color: white;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
  

.login-container {
    background: white;
    padding: 50px;
    margin: 30px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    align-items: center;
    width: 350px;
}

.form-group {
    text-align: left;
}

label {
    font-size: larger;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #081d61;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background: #081d61;
    color: white;
    margin: 10px;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
}

button:hover {
    background: #081d61;
}

footer {
    background: #1e1e1e;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

a{
    padding: 10px;
    margin: 10px;
}