* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: linear-gradient(to right, rgb(35, 134, 139), rgb(22, 99, 84), rgb(35, 134, 139));
}
input,
textarea {
    font-family: Georgia, 'Times New Roman', Times, serif;
}
::-webkit-scrollbar{
    width: 12px;
}
::-webkit-scrollbar-track{
    background: white;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(rgb(110, 199, 198), rgb(159, 222, 247));
    box-shadow: rgb(255, 225, 180) 0px 1px 25px;
    border-radius: 10px;
}
.container {
    position: relative;
    width: 100%;
    padding: 32px;
    background: linear-gradient(to right, rgb(35, 134, 139), rgb(22, 99, 84), rgb(35, 134, 139));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding-top: 60px;
}

.form {
    height: 500px;
    width: 100%;
    max-width: 820px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-form {
    background-color: #1abc9c;
    position: relative;
}
.contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #1abc9c;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}
form {
    padding: 59px 56.32px;
    z-index: 10;
    overflow: hidden;
    position: relative;
}
.title {
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    line-height: 16px;
    margin-bottom: 11.2px;
}

.input-container {
    position: relative;
    margin: 16px 0;
}

.input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 10px 15px;
    color: #fff;
    font-weight: 500;
    font-size: 15.2px;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: 0.3s;
}

textarea.input {
    padding: 10px 15px;
    min-height: 150px;
    border-radius: 5px;
    resize: none;
    overflow-y: auto;
}
input::placeholder, textarea::placeholder {
    color: #fff;
}
.btn {
    padding: 15.36px 33.28px;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 15.2px;
    color: #1abc9c;
    line-height: 16px;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    width: 100%;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
}
.contact-info {
    padding: 36.8px 35.2px;
    position: relative;
}

.contact-info .title {
    color: #1abc9c;
}

.text {
    color: #333;
    margin: 24px 0 32px 0;
}

.information {
    display: flex;
    color: #555;
    margin: 11.2px 0;
    align-items: center;
    font-size: 15.2px;
}

.information i {
    color: #1ABC9C;
}

.icon {
    width: 28px;
    margin-right: 11.2px;
}

.social-media {
    padding: 32px 0 0 0;
}

.social-media p {
    color: #333;
}

.social-icons {
    display: flex;
    margin-top: 8px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #1abc9c, #149279);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 8px;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.05);
}
@media (max-width: 850px) {
    .form {
        height: auto;
        grid-template-columns: 1fr;
    }
  
    .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }
  
    .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }
    .text {
        margin: 16px 0 24px 0;
    }
  
    .social-media {
        padding: 24px 0 0 0;
    }
}
  
@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
  
    .contact-info:before {
        display: none;
    }
  
    form,
    .contact-info {
        padding: 27.2px 25.6px;
    }
  
    .text,
    .information,
    .social-media p {
        font-size: 12.8px;
    }
  
    .title {
        font-size: 18.4px;
    }
  
    .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
  
    .icon {
        width: 23px;
    }
  
    .input {
        padding: 7.2px 19.2px;
    }
  
    .btn {
        padding: 7.2px 19.2px;
    }
}
  