* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: whitesmoke;
}


.container {
    margin: auto;
    margin-top: 50px;
    width: 1200px;
    height: 420px;
    padding: 10px;
    display: flex;
    background-color: white;
    gap: 30px;
}

.contact-info {
    width:500px;
    background-color: #00b4d8;
    border-radius: 5px;
    padding: 30px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 22px;
    color: white;
    margin-right: 10px;
}

.info-item p {
    font-size: 20px;
    color: white;
}

.info-item .location {
    font-size: 17px;
}

.contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.d-flex div {
    flex: 1;
    margin-right: 10px;
}

.d-flex div:last-child {
    margin-right: 0;
}

label {
    font-size: 16px;
    color: #00b4d8;

}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    transition: border-bottom 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-bottom: 2px solid #00b4d8;
    outline: none;
}

textarea {
    resize: none;
}

button[type="submit"] {
    background-color: #00b4d8;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
    align-self: flex-end;
}

button[type="submit"]:hover {
    opacity: 0.7;
}

.map {
    height: 500px;
    margin: auto;
    width: 100%;
    display: flex;
    padding: 80px 0;
}

.map iframe {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: auto;
}
