
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #f2f2f2;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.contact-box {
    display: flex;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
    width: 700px;
    position: relative;
}
.left {
    background: url('https://via.placeholder.com/300x400') no-repeat center;
    background-size: cover;
    width: 300px;
}
.right {
    padding: 30px;
    flex: 1;
}
h2 {
    margin: 0 0 20px;
}
.field {
    width: 100%;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 10px;
}
.area {
    height: 100px;
}
.btn {
    background: #03a9f4;
    border: none;
    padding: 10px;
    color: #fff;
    width: 100%;
    cursor: pointer;
}
.contact-info {
    background: #03a9f4;
    color: white;
    padding: 30px;
    margin-left: 20px;
    max-width: 300px;
}
