*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color:white;
}

.container{
    width:100%;
    max-width: 1300px;
    background:#0f172a;
    border-radius:20px;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap:wrap;
    overflow:hidden;
    padding-left: 55px;
    margin: 0 auto;
    margin-top: 4em;
}

.left{
    flex:1;
    min-width:300px;
    padding:50px;
}

.left h2{
    font-size:32px;
    margin-bottom:20px;
}

.left p{
    opacity:0.9;
    margin-bottom:30px;
    line-height:1.6;
}

.contact-info{
    margin-bottom:25px;
}

.contact-info span{
    display:block;
    margin-bottom:10px;
    font-size:15px;
}

.socials a{
    display:inline-block;
    margin-right:15px;
    margin-top:10px;
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.right{
    flex:1;
    min-width:300px;
    padding:50px;
}

form{
    display:flex;
    flex-direction:column;
}

input, textarea{
    padding:14px;
    margin-bottom:20px;
    border-radius:10px;
    border:none;
    outline:none;
    background:#1f2937;
    color:white;
    font-size:15px;
    border: 1px solid #1f2937;
}

input:focus, textarea:focus{
    border:1px solid #2563eb;
}


textarea{
    resize:none;
    height:120px;
}

button{
    padding:15px;
    border:none;
    border-radius:10px;
    background: linear-gradient(135deg,#0284c7,#38bdf8);
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.socials a img {
    width: 25px;
    height: 25px;
    transition: transform .5s ease;
}

.socials a img:hover {
    transform: scale(1.04);
}

button:hover{
    background:#1d4ed8;
}

@media(max-width:1300px){
    .container{
        flex-direction:column;
    }
    .left, .right{
        padding: 5px;
    }
    .right {
        width: 100%;
    }
}