/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body, html{
    font-family: Arial, sans-serif;
    height: 100%;
    background-image:linear-gradient(45deg, #FFA500 0 50%, #104E8B 50% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Container geral */
.container{
    width:100%;
    display:flex;
    justify-content:center;
}

/* Box do login */
#login{
    background:white;
    width:350px;
    padding:30px;
    border-radius:10px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.25);
    text-align:center;
}

/* Logo */
.logo{
    height:120px;
    margin-bottom:10px;
}

/* Título */
#login h2{
    color:#2C3E50;
    margin-bottom:20px;
}

/* Campos */
.campo{
    text-align:left;
    margin-bottom:15px;
}

.campo label{
    font-weight:bold;
    color:#2C3E50;
}

.campo input{
    width:100%;
    padding:12px;
    margin-top:5px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
    transition:0.3s;
}

.campo input:focus{
    border-color:#2C3E50;
    box-shadow:0px 0px 5px rgba(44,62,80,0.4);
    outline:none;
}

/* Botão */
.btn{
    width:100%;
    background:#2C3E50;
    color:white;
    padding:14px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-weight:bold;
    font-size:15px;
    transition:0.3s;
}

.btn:hover{
    background:#1A252F;
}

/* Responsivo */
@media (max-width: 480px){
    #login{
        width:90%;
        padding:25px;
    }
}
