.contact-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

section {
    width: 80%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

h2 {
    margin-bottom: 25px;
}

i {
    margin-bottom: 45px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: justify;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 14px;
    background-color: #4ee49c;
    border: none;
    border-radius: 4px;
    color: #0d0e1b;
    resize: none;
    width: calc(100% - 20px);
    margin: auto;
}

.contact-form button {
    margin: 20px auto;
    padding: 10px;
    background-color: #4ee49c;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    color: #0d0e1b;
    cursor: pointer;
    text-transform: uppercase;
    width: 50%;
}

.contact-form button:hover {
    background-color: #3cb97d;
}

.response-message {
    margin-top: 15px;
    font-size: 16px;
}

.disabled {
    position: relative;
    z-index: -1;
    opacity: 0.3;
    user-select: none;
}

.response-message {
    font-family: 'Sugo Pro Classic Trial';
    font-size: 25px;
}

@media (min-width: 930px) {
    .contact-container {
        flex-direction: row;
    }

    .contact-info,
    .contact-form {
        width: 50%;
        height: 100%;
    }

    .contact-info {
        text-align: left;
        padding-bottom: 10%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 50%;
    }
}

section a {
    color: #4ee49c;
    text-decoration: none;
    position: relative;
}

section a::after {
    content: '';
    position: absolute;
    left: 0;
    width: 0%;
    height: calc(100% + 10px);
    transition: 0.5s;
    border-bottom: 1px solid;
}

section a:hover::after {
    width: 100%;
}