 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    height: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}
a{
    color: #fff;
}
.container {
    display: flex;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.content {
    display: flex;
    width: 100%;
    height: 100%;
}
r
.text-column, .form-column {
    flex: 1;
    padding: 60px;
}
.text-column {
    flex: 1;
    background-image: url('../images/skinhub.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.text-column h1 {
    font-size: 3em;
    margin-bottom: 20px;
}
.text-column p {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 10px 0;
    display: block;
}
.form-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-column .title-h1{
    margin: 20px 0;
    display: block;
    font-size: 32px;
    line-height: 40px;
    text-transform: uppercase;
}

span{
    font-size: 14px;
    line-height: 22px;
    display: block;
    margin-bottom: 10px;
}

.social-media {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.contact-info{
    list-style: none;
}

.contact-info li{
   font-size: 14px;
   line-height: 22px;
   margin-bottom: 16px;
}

.contact-info a{
    color: #000;
    text-decoration: none;
}

.contact-info a:hover{
    color: #761518;
}

.contact-info i {
    font-size: 1.2rem;
    color: #761518;
    margin-right: 8px;
}

.social-media li {
    list-style: none outside none;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background-color: #761518;
    border: 1px solid #761518;
    font-size: 20px;
    border-radius: 22px;
    -moz-border-radius: 22px;
    -webkit-border-radius: 22px;
    -o-border-radius: 22px;
    text-align: center;
}

.social-media li:hover {
    background-color: #fff;
    border: 1px solid #761518;
    color: #761518;
}

.social-media li:hover i {
    color: #761518;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
    .text-column {
        height: 50vh;
    }
    .form-column {
        height: 50vh;
        padding: 20px;
    }
    
    .form-column img{
        margin-top: 100px;
    }
}