@import "NavigationBar.css";

.下面区域{
    min-height: calc(100vh - 50px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.下面区域  form{
    background-color: rgba(255,255,255,.6);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 0 5px #000;

    width: 600px ;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

.下面区域  form > *{
    margin: 12px;
}

.下面区域 h1{
    text-align: center;
}

.下面区域 label{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.下面区域 input{
    width: 400px;
    border: none;
    outline: none;
    border-radius: 4px;
}

.下面区域 input,
.下面区域 button{
    height: 30px;
    line-height: 30px;
}

.下面区域 button{
    background-color: #91e59e;
    border: none;
    color: #ffffff;
}