.login-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background-image:url('/static/img/fondo-madera.jpg');
    background-repeat:repeat;
}

.login-box{
    width:100%;
    max-width:500px;
    background:rgba(245,239,231,.97);
    padding:40px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.20);
}

.login-box h1{
    font-weight:900;
    text-align:center;
}

.login-box p{
    text-align:center;
    margin-bottom:30px;
}

.login-box input{
    width:100%;
    height:55px;
    margin-bottom:15px;
    border-radius:14px;
    border:1px solid #ddd;
    padding:0 15px;
}

.login-box button{
    width:100%;
    height:55px;
    border:none;
    background:#111;
    color:white;
    border-radius:14px;
    font-weight:900;
}

.error-box{
    background:#dc3545;
    color:white;
    padding:12px;
    border-radius:12px;
    margin-bottom:15px;
}