/* responsive */
@media(max-width:720px){
  .hero h1{font-size:1.4rem}
  .header .search input{min-width:140px}
  .ticker{animation-duration:60s !important}
}

.form-body{
   background:linear-gradient(135deg,#f7971e,#ffd200);
    display:flex;
    justify-content:center;
    align-items:center;
    height:50vh;
    box-sizing:border-box;
    
}

.newsletter-box{
    background:#fff;
    padding:40px 35px;
    border-radius:20px;
    box-shadow:0 15px 30px rgba(0,0,0,.15);
    width:1000px;
    text-align:center;
    position:relative;
    overflow:hidden;

    background:linear-gradient(135deg,#f7971e,#ffd200);
    display:flex;
    justify-content:center;
    align-items:center;
    height:50vh;

}

.newsletter-box h2{
    font-size:30px;
    color:#333;
    margin-bottom:10px;
}

.newsletter-box p{
    font-size:18px;
    color:#666;
    margin-bottom:25px;
}

/* ---------- INPUTS ---------- */
.newsletter-box input{
    width:100%;
    padding:12px 15px;
    margin:8px 0;
    border:2px solid #f7971e;
    border-radius:8px;
    outline:none;
    font-size:15px;
    transition:0.3s;
}

.newsletter-box input:focus{
    border-color:#ff6a00;
    box-shadow:0 0 8px #ff6a00;
}

/* ---------- BUTTON ---------- */
.subscribe-btn{
    width:100%;
    background:linear-gradient(90deg,#f7971e,#ff6a00);
    color:#fff;
    padding:12px;
    font-size:16px;
    font-weight:600;
    border:none;
    border-radius:8px;
    cursor:pointer;
    transition:transform .2s;
}
.subscribe-btn:hover{
    transform:scale(1.05);
}

/* ---------- MESSAGE ---------- */
.message{
    margin-top:15px;
    font-weight:600;
    color:#333;
}
