@charset "utf-8";
/* Kevin Rutherford II - Rutt! Comedy - contact.php */

#contact-page{
    padding:120px 20px 80px;
    background:transparent;
}
.contact-wrapper *{
    box-sizing:border-box;
}
.contact-card{
    width:100%;
    max-width:1100px;
    background:rgba(15,15,15,.92);
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 10px 45px rgba(0,0,0,.55);
    position:relative;
}

.left-panel{
    background:linear-gradient(135deg,#000,#1a1a1a);
    padding:60px;
    color:white;
    position:relative;
}

.right-panel{
    background:#121212;
    padding:60px;
	color:  white;
}

.brand{
    color:#ffb612;
    font-size:3rem;
    font-weight:700;
}

.gold-line{
    width:80px;
    height:6px;
    background:#ffb612;
    border-radius:50px;
    margin-bottom:25px;
}

.subtitle{
    margin-top:20px;
    line-height:1.8;
    color:#d1d1d1;
}

.feature{
    margin-top:18px;
    font-size:1rem;
}

.form-label{
    color:#ffb612;
    font-weight:600;
}

.form-control{
    background:#1f1f1f;
    border:none;
    border-radius:14px;
    color:white;
    padding:15px;
}

.form-control:focus{
    background:#272727;
    color:white;
    box-shadow:0 0 0 3px rgba(255,182,18,.35);
}

.btn-rutt{
    background:#ffb612;
    color:black;
    border:none;
    font-weight:700;
    padding:16px;
    border-radius:14px;
    transition:all .3s ease;
}

.btn-rutt:hover{
    background:#ffd24a;
    transform:translateY(-2px);
}

.response-box{
    display:none;
    padding:16px;
    border-radius:12px;
    margin-bottom:20px;
    font-weight:600;
}

.response-success{
    background:#198754;
    color:white;
}

.response-error{
    background:#dc3545;
    color:white;
}

.loader{
    display:none;
}
.info-box
{
	color:white;
}
@media(max-width:768px){

    .left-panel,
    .right-panel{
        padding:35px;
    }

    .brand{
        font-size:2.2rem;
    }

}
