*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#ffffff;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-box{

    width:420px;

    background:#fff;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    padding:40px;

    text-align:center;

    border-top:6px solid #c8a03a;

}

.logo{

    width:120px;

    margin-bottom:20px;

}

h1{

    color:#111;

    font-size:30px;

    margin-bottom:5px;

}

.subtitulo{

    color:#777;

    margin-bottom:30px;

}

input{

    width:100%;

    height:45px;

    margin-bottom:15px;

    border:1px solid #ccc;

    border-radius:8px;

    padding-left:15px;

    font-size:15px;

}

button{

    width:100%;

    height:45px;

    background:#c8a03a;

    color:white;

    border:none;

    border-radius:8px;

    cursor:pointer;

    font-size:16px;

    font-weight:bold;

}

button:hover{

    background:#b18d2f;

}