@import url('https://fonts.googleapis.com/css2?family=Italianno&family=Montserrat:ital,wght@1,600&family=Open+Sans:ital@1&family=Pacifico&display=swap');
*{
    font-family: 'Open Sans', sans-serif;


}
body{
    margin: 0;
    padding: 0;
}
.container{
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.content{
    height: 80%;
    width: 80%;
    display: flex;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.left-side{
    height: 100%;
    background-color: #5cce93;
    color: #fff;
}
 .details{
    padding: 30px 15px 15px 30px;
}
.topic{
    font-weight: 400;
    font-size: 25px;
}
.left-side .details p{
    font-size: 15px;
    color: #ffffffd7;
    margin-bottom: 20px;
}
.left-side .details .icon{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: solid 1px rgba(255, 255, 255, 0.61);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    
}
.left-side .details .information{
    display: grid;
    grid-template-columns: 50px 4fr;
    margin-bottom: 20px;
}
.left-side .details .information .info{
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #ffffffd7;
}
.right-side .details .form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 10px;
}
.right-side{
    width: 100%;
}
.right-side .details .form input{
    width: 100%;
    border: none;
    border-bottom: 2px solid rgb(227, 227, 227);
    cursor: pointer;
    height: 20px;
}
.right-side .details .form p{
    font-size: 10px;
    font-weight:bolder
}
.right-side .details .form .subject{
    grid-column: span 2;
}
.right-side .details .form .message{
    grid-column: span 2;

}
.right-side .details .form .message textarea{
    width: 100%;
    border: none;
    border-bottom: 2px solid rgb(227, 227, 227);
    
}
button{
    padding: 8px;
    background-color: #5cce93;
    color: #fff;
    border: none;
    border-radius: 3px;
    margin-top: 10px;
}
input:focus-visible{
    outline: none;
}
textarea:focus-visible{
    outline: none;
}
@media (max-width:790px){
    .content{
        height: 95%;
        
    }
}
@media (max-width:554px){
    .container .content{
        flex-direction: column;
        width: 100%;
        height: 100%;
    }
    .container{
        height: 100%;
        width: 100%;
    }
}
