body{
    display: flex;
    min-height: 100vh;
    min-width: 100vw;
    background-color: #f5f5f5;
    align-items: center;
    justify-content: center;
}

#login_box{
    display: flex;
    width: 400px;
    margin: 0 auto;
    margin-top: 100px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 5px #ccc;
    flex-direction: column;
    align-items: center;
}

.login{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.login_input{
    width: 100%;
    margin-top: 10px;
}
input {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    font-size: 16px;
    outline: none;
    width:100%;
}
.login_content{
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
}
.login_submit{
    width:100%;
}
.login_button{
    width:100%;
    margin-top: 10px;
    height:20px;
    background-color: #000;
    color: #fff;
    min-height: 30px;
    border-radius: 3px;
}

#nmd_logo{
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
}
#login_text{
    min-width:100%;
    text-align:center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 20px;
}
div.signup{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}
button.login_button#signup{
    background-color: #880604;
    color: #fff;
    border: 1px solid #000;
}