* {
    margin: 0;
    padding: 0;
    user-select: none;
    box-sizing: border-box;
}

body{
    background-color: #395144;
    justify-content: center;
    align-items: center;
    display: flex;
    min-height: 100vh;
}

.box{
    background-color: white;
    padding-top: 30px;
    padding: 30px;
    /*Round up */
    border-radius: 13px;
}

.box h2{
    margin-bottom: 40px;
    text-align: center;
    font-size: 25px;
    color: azure;
    font-family: sans-serif;
}

input{
    padding: 20px;
    user-select: none;
    height: 50px;
    width: 400px;
    border-radius: 6px;
    border: none;
    border: 2px solid #61764B;
    outline: none;
    font-size: 22px;
}

input::placeholder{
    font-size: 15px;
}

#button{
    font-family: sans-serif;
    font-size: 15px;
    margin-top: 40px;
    border: 2px solid #AA8B56;
    width: 155px;
    height: 50px;
    text-align: center;
    background-color: #AA8B56;
    display: flex;
    color: rgb(255,255,255);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
}

.btn2{
    margin-left: 85px;
}

#button:hover{
    color: white;
    background-color: #9F8772;
    border-color: #9F8772;
}

    /*Copyright*/
.copyright{
    bottom: 180px;
    left: 600px;
    position: absolute;
    z-index: 1;
    color: white;
}
.copyright-link{
    color: white;
}

/*Google Fonts*/
.passText{
    font-family: 'Raleway', sans-serif;
}
