
body {
    background-color: #333;
    font-family: 'Agenda', sans-serif;
    align-items: center;
    justify-content: center;
    margin: 0;
}


.logo {
  margin: 0 auto;
  width: 400px;
  margin-top: 50px;
}
.logo img {
  max-width: 100%;
}


.form-wrapper {
	max-width: 400px;
	margin: 200px auto 0;
}

.login-container {
    background-color: #d6cdc1;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(104, 85, 73, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}
h2 {
    color: #317780;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s ease-in-out;
}
input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #777e5f;
    outline: none;
}
button {
    width: 100%;
    padding: 12px;
    background-color: #317780;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}
button:hover {
    background-color: #685549;
}
.footer {
    margin-top: 30px;
    text-align: center;
    color: #317780;
    font-size: 0.85em;
}
