body{
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    background-color: #060606;
    color: #ffffff;
    background-image: url('../img/lunaDi.jpg');
}

.container{
    display: flex;
    box-sizing: border-box;
    background-color: rgba(223, 175, 1, .6);
    width: 400px;
    justify-content: center;
    margin-top: 5%;
    border-radius: 6px;
}

form{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    width: 100%;
    padding: 5%;
    color: black;
}

.form-header{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
}

.form-header h1{
    text-align: center;
}

.form-header h2{
    align-self: flex-start;
    font-size: 16px;
    font-weight: 400;
}

label{
    margin-bottom: 2px;
}

input{
    width: 50%;
    padding: 8px;
}

.container button{
    background-color: rgb(223, 175, 1);
    cursor: pointer;
    padding: 8px;
}

.container button:hover{
    background-color: rgba(223, 175, 1,.9);
}