body {
    min-height: 100vh;
}

.contact {
    display: flex;
    align-items: center;
    height: 75vh;
}

.contact .container {
    width: 40%;
    margin: 0 25%;
    position: relative;
    z-index: 2;
    padding: 5vh 5%;
    border-radius: 1vh;
}

.contact .container .success {
    width: 50%;
    margin: 0 25%;
    text-align: center;
    padding: 1vh 0%;
    background-color: rgb(var(--gradient-one));
    color: #fff;
    font-size: 1.75vh;
    margin-bottom: 3vh;
    border-radius: .5vh;
    font-weight: bolder;
}

.contact .container h1 {
    display: flex;
    position: relative;
    font-size: 3vh;
    color: #fff;
    margin: 0;
    margin-bottom: 1vh;
    justify-content: center;
    margin-bottom: 6vh;
}

.contact .container h1::after {
    display: block;
    position: absolute;
    content: '';
    bottom: -1vh;
    height: .2vh;
    width: 10%;
    background-color: #fff;
}

.contact .container p {
    font-size: 1.75vh;
    color: #fff;
    margin: 0;
    margin-bottom: 2vh;
    text-align: center;
}

.contact .container .line {
    display: block;
    margin-bottom: 2.5vh;
    text-align: center;
}

.contact .container .line label {
    display: block;
    font-size: 1.75vh;
    color: #fff;
    margin-bottom: 1vh;
    text-align: left;
    font-weight: 500;
}

.contact .container .line input[type=text] {
    display: block;
    width: 99%;
    font-size: 1.6vh;
    border: none;
    outline: none;
    padding: .5vh .5%;
    border-radius: .5vh;
}

.contact .container .line input[type=submit] {
    border: none;
    outline: none;
    font-size: 1.6vh;
    text-decoration: none;
    background: linear-gradient(rgb(var(--gradient-one)), rgb(var(--gradient-two)));
    color: #fff;
    padding: 1.5vh 4%;
    border-radius: 1vh;
    font-weight: 500;
    margin-top: 3vh;
    margin-right: 2%;
    cursor: pointer;
}

.contact .container .line textarea {
    display: block;
    width: 99%;
    font-size: 1.6vh;
    border: none;
    outline: none;
    padding: .5vh .5%;
    border-radius: .5vh;
    resize: vertical;
}

@media screen and (max-width: 600px), (orientation : portrait) {
    .contact .container {
        width: 90%;
        margin: 0 5%;
        padding: 5vh 0%;
    }
}