/* ==========================================================
   Fundação PROLIBER
   Newsletter
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#f2f5f8;

    color:#2d3748;

    line-height:1.6;

    padding:40px 20px;

}

.container{

    max-width:760px;

    margin:auto;

}

.card{

    background:#ffffff;

    border-radius:10px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    padding:45px;

}

.logo{

    text-align:center;

    margin-bottom:30px;

}

.logo img{

    max-width:220px;

    height:auto;

}

h1{

    text-align:center;

    color:#003366;

    margin-bottom:8px;

    font-size:34px;

}

h2{

    color:#003366;

    margin-bottom:20px;

}

h3{

    margin-top:35px;

    margin-bottom:15px;

    color:#003366;

}

p{

    margin-bottom:20px;

}

label{

    display:block;

    margin-top:18px;

    margin-bottom:8px;

    font-weight:bold;

}

input[type=text],
input[type=email],
select,
textarea{

    width:100%;

    padding:14px;

    border:1px solid #d7dce1;

    border-radius:6px;

    font-size:15px;

    transition:.2s;

}

input:focus,
select:focus,
textarea:focus{

    outline:none;

    border-color:#0055a5;

    box-shadow:0 0 0 3px rgba(0,85,165,.15);

}

.readonly{

    background:#f3f4f6;

    color:#666;

    cursor:not-allowed;

}

textarea{

    resize:vertical;

    min-height:120px;

}

.checkbox-group{

    margin-top:10px;

}

.checkbox-group label{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:normal;

    margin:10px 0;

}

.checkbox-group input{

    width:auto;

}

button{

    margin-top:35px;

    width:100%;

    padding:16px;

    border:none;

    border-radius:6px;

    background:#0055a5;

    color:#fff;

    font-size:17px;

    font-weight:bold;

    cursor:pointer;

    transition:.25s;

}

button:hover{

    background:#003f7d;

}

button.danger{

    background:#c62828;

}

button.danger:hover{

    background:#9f1f1f;

}

.alert{

    padding:18px;

    border-radius:6px;

    margin-bottom:25px;

}

.alert-success{

    background:#e8f5e9;

    color:#2e7d32;

}

.alert-error{

    background:#fdecea;

    color:#b71c1c;

}

.footer{

    text-align:center;

    margin-top:35px;

    color:#777;

    font-size:13px;

}

hr{

    margin:35px 0;

    border:none;

    border-top:1px solid #ececec;

}

@media(max-width:768px){

.card{

    padding:28px;

}

h1{

    font-size:28px;

}

}