@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background: #0866c6;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    background-color: white;
    border-radius: 14px;
    margin: 14px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 3px 5px rgba(0,0,0, 0.5);
    overflow: hidden;
}

.header .logo{
    height: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.form{
    padding: 18px;
}

.form-content{
    margin-bottom: 23px;
    padding-bottom: 10px;
    position: relative;
}

.form-content label{
    display: inline-block;
    margin-bottom: 4px;
}

.form-content input{
    display: block;  /* SEM O BLOCK TAMBEM FICA FIXE */
    width: 100%;
    border-radius: 8px;
    padding: 8px;
    border: 2px solid #dfdfdf;
}

.form-content a{
    position: absolute;
    bottom: -13px;
    left: 0;
    visibility: hidden;
}

.form .btn{
    background-color: #0866c6;
    color: #fff;
    width: 100%;
    border-radius: 14px;
    padding: 10px;
    border: 0;
    font-size: 16px;
    cursor: pointer;
    margin-top: 14px;
    transition: background 0.3s;
}  

.form button:hover{
    background: #000000;
}

.error{
    background: #eb2121;
    color: #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    margin: 5px;
    text-align:center;
}