/* ===========================
   PROMOBOX - INTURSA
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:linear-gradient(135deg,#005AA7,#00A8E8);

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

}

.container{

    width:90%;

    max-width:900px;

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.left{

    padding:60px;

    text-align:center;

}

.logo{

    width:180px;

    margin-bottom:30px;

}

h1{

    font-size:42px;

    color:#005AA7;

    margin-bottom:20px;

}

p{

    font-size:20px;

    color:#666;

    margin-bottom:40px;

    line-height:1.5;

}

.btn{

    display:inline-block;

    background:#FF8C00;

    color:white;

    text-decoration:none;

    padding:18px 45px;

    border-radius:50px;

    font-size:22px;

    transition:.3s;

}

.btn:hover{

    transform:scale(1.05);

    background:#ff7700;

}