*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
 
}
body{
    font-family: 'outfit';
    background: linear-gradient(#260581);
}

.contact-container{
    height: 100vh; 
     display: flex;
     align-items: center; 
    justify-content: space-between;
    padding: 40px;
}
.contact-container img{
    width: 600px;
    height: 500px;
}
.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 600px;
}
    .contact-left-title h2{
        font-weight: 600;
        color: #ff00ff;
        font-size: 40px;
        margin-bottom: 5px;
    }
    .contact-left-title hr{
        border: none;
        width: 120px;
        height: 5px;
        background-color: #ff00ff;
        border-radius: 10px;
        margin-bottom: 20px;


    }
    .contact-inputs{
        width: 100%;
        height: 50px;
        border: none;
        outline: none;
        padding-left: 25px;
        font-weight: 500;
        color:#000000;
        border-radius: 50px;
        
    
    }
    .contact-left textarea{
        height: 140px;
        padding-top: 15px;
        border-radius: 20px;
    }
    .contact-inputs:focus{
border: 2px solid #ff994f;
    }
    .contact-inputs::placeholder{
        color: #ff00ff
    }
    .contact-left button{
display: flex;
        align-items:center;
        padding: 15px 30px;
        font-size: 16px;
        color: #000000;
        gap: 10px;
        border: none;
        border-radius: 50px;
        background: linear-gradient(270deg, #ffb6c1);
        cursor: pointer;
        background-color: #ff00ff

    }
        
    
 .contact-left button img{
    height: 15px;
 }
 .contact-map {
    width: 100%;
    padding: 40px;
 }
 .contact-map a iframe {
    width: 100%;
 }
 /**********responsive******/
@media (max-width:767px){
.contact-container{
    height: auto; 
    flex-direction: column;
    padding: 20px;
}

}
.contact-container img{
    width: 100%;
    height: auto;
}
.contact-left{
    align-items: center;
    gap: 16px;
    width: 100%;
}
    .contact-left-title h2{
        font-size: 30px;
      
    }
    .contact-left-title hr{ 
        width: 80px;
        height: 3px;
        background-color: #ff00ff;
    }
    .contact-inputs{
        height: 40px;
        font-size: 14px;
        color:#666;
        border-radius: 20px;
    
    }
    .contact-left textarea{
        height: 120px;
    }
    .contact-left button{
        padding: 10px 20px;
        font-size: 14px;
        color: black;
        background: linear-gradient(270deg, #ffb6c1);
        cursor: pointer;
    }
 .contact-left button img{
    height: 10px;
 }
 .contact-map {
    padding: 20px;
 }
 .contact-map a iframe {
    width: 100%;
}   