body{
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #CACACA;
    display: flex;
}


/* ------------------ BOX ------------------------------------------------------------------ */


.box{
    width: 300px;
    padding: 100px;
    border: 1px solid #000;
    border-radius: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    text-align: center;
}
.box h1{
    color: #84181C;
    text-transform: uppercase;
    font-weight: 100;
}
.box input[type = "text"],.box input[type = "password"]{
    display: block;
    background: none;
    margin: 20px auto;
    text-align: center;
    border: 1px solid #000;
    padding: 14px 10px;
    width: 200px;
    outline: none;
    color: #84181C;
    border-radius: 30px;
    transition: 0.25s;
}
.box input[type = "text"]:focus,.box input[type = "password"]:focus{
    width: 240px;
    border-color: #84181C;
}
.box input[type = "submit"]{
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 1px solid #000;
    padding: 8px 30px;
    outline: none;
    color: #000;
    border-radius: 24px;
    transition: 0.25s;
    cursor: pointer;
}
.box input[type = "submit"]:hover{
    background: #cacaca;
    border-color: #84181C;
    color: #84181C;
}
