* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color:  #e3e3e3;
    margin-top:150px; 
    /*700px*/
    height: 50vh;
/*     height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Montserrat, sans-serif;
}

a {
    color: #b7625c;
    font-size:  2em;
    font-weight: bold;
    text-decoration: none;
}

p {
    margin: 10px 0;
}

.form {
     margin-top: 150px;
    display: flex;
    flex-direction: column;
    width: 400px;
}

input {
    margin: 10px 0;
    padding: 10px;
    border: unset;
    border-bottom: 2px solid #e3e3e3;
    outline: none;
}

button {
    padding: 10px;
    background: #e3e3e3;
    border: unset;
    cursor: pointer;
}

.msg {
    border: 2px solid #ffa908;
    border-radius: 3px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.logout {
    color: #b7625c;
}