* {
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body {
    background-color: #F9F3E3;
}
header {
    height: 250px;
    padding: 20px;
}
header .logo img {
    height: 200px;
}
main {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    padding-top: 3rem;
}
.alert {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    position: relative;
}
.alert-danger {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}
.alert-warning {
    background-color: #fff3cd;
    color: #664d03;
    border: 1px solid #ffecb5;
}
.login-card {
    background-color: white;
    padding: 3rem;
    height: 400px;
    width: 500px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 2px 5px 10px #80808066;
    text-align: center;
}
.login-card form {
    display: flex;
    flex-direction: column;
    line-height: 1.5rem;
}
input {
    padding: 5px;
    margin: 20px 0;
    border-radius: 5px;
}
button {
    padding: 10px 20px;
    background-color: #F4BF00;
    border: none;
    font-size: larger;
    border-radius: 10px;
    box-shadow: 2px 3px 5px #80808061;
    cursor: pointer;
}
button:hover {
    box-shadow: 0 0 0;
    background-color: #e5b300;
}
