/* ==========================
   Global
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

body{

    background:linear-gradient(135deg,#0b1f4d,#1d4ed8,#2563eb);

    min-height:100vh;

    display:flex;

    flex-direction:column;

    align-items:center;

    padding:30px 15px;

    color:#fff;

}

/* ==========================
   Top Section
========================== */

.container{

    width:100%;
    max-width:900px;

    text-align:center;

    margin-bottom:25px;

}

.title{

    font-size:42px;

    color:#ffd700;

    margin-bottom:15px;

}

.subtitle{

    font-size:18px;

    line-height:1.8;

    color:#f3f4f6;

}

/* ==========================
   Contact Form
========================== */

.form-box{

    width:100%;
    max-width:700px;

    background:#ffffff;

    color:#222;

    padding:35px;

    border-radius:20px;

    box-shadow:0 12px 30px rgba(0,0,0,.35);

}

.form-box h2{

    text-align:center;

    color:#1d4ed8;

    margin-bottom:25px;

    font-size:28px;

}

.form-box input,

.form-box textarea{

    width:100%;

    padding:15px;

    margin-bottom:18px;

    border:2px solid #d1d5db;

    border-radius:10px;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.form-box input:focus,

.form-box textarea:focus{

    border-color:#2563eb;

    box-shadow:0 0 10px rgba(37,99,235,.25);

}

.form-box textarea{

    min-height:170px;

    resize:vertical;

}

.form-box button{

    width:100%;

    padding:16px;

    border:none;

    border-radius:10px;

    font-size:19px;

    font-weight:bold;

    cursor:pointer;

    background:linear-gradient(90deg,#16a34a,#22c55e);

    color:white;

    transition:.3s;

}

.form-box button:hover{

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(0,0,0,.25);

}

#msg{

    margin-top:18px;

    text-align:center;

    font-weight:bold;

    color:#1d4ed8;

    font-size:17px;

}

/* ==========================
   Reply Link
========================== */

.menu{

    display:inline-block;

    margin-top:25px;

    background:#ffffff;

    color:#1d4ed8;

    padding:15px 30px;

    border-radius:12px;

    text-decoration:none;

    font-size:18px;

    font-weight:bold;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}

.menu:hover{

    background:#2563eb;

    color:white;

    transform:translateY(-3px);

}

/* ==========================
   Footer
========================== */

.footer{

    margin-top:35px;

    text-align:center;

    font-size:18px;

    color:#ffd700;

    font-weight:bold;

}

/* ==========================
   Mobile Responsive
========================== */

@media(max-width:768px){

.title{

    font-size:32px;

}

.subtitle{

    font-size:16px;

}

.form-box{

    padding:25px;

}

.form-box h2{

    font-size:24px;

}

.form-box input,

.form-box textarea{

    font-size:15px;

}

.form-box button{

    font-size:17px;

}

.menu{

    width:100%;

    text-align:center;

    font-size:16px;

}

.footer{

    font-size:16px;

}

}