* {
    font-family: Poppins, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    background-color: #f8f8f8;
}
.navbar {
    display: none;
}
form {
    margin-left: auto;
    margin-right: auto;
    width: 88.53vw;
}
.header {
    text-align: center;
    font-weight: 400;
    font-size: 4.95vw;
    margin-bottom: 12vw;
    margin-top: 20.53vw;
}
.header>span{
    font-weight: 800;
    color: #824CF4;
}
input {
    font-weight: 500;
    height: 13.33vw;
    font-size: 3.375vw;
    border-radius: 2.7vw;
    border: 0.53vw solid transparent;
    margin-bottom: 2.93vw;
    line-height: 0;
    padding: 0 4.8vw;
}
input:focus {
    outline: none;
}
input.error {
    border: 0.53vw solid #824CF4;
}
.email {
    width: 100%;
}
.first-name {
    text-align: center;
    width: 42.67vw;
}
.number {
    text-align: center;
    width: 42.67vw;
    float: right;
}
textarea {
    font-weight: 500;
    width: 100%;
    height: 34.67vw;
    font-size: 3.375vw;
    border-radius: 3.2vw;
    border: 0.53vw solid transparent;
    padding: 4vw 6.67vw 0 18px;
    margin-bottom: 3.47vw;
    overflow: auto;
    resize: none;
}
textarea:focus {
    outline: none;
}
textarea.error {
    border: 0.53vw solid #824CF4;
}
.btn {
    width: 100%;
    height: 13.33vw;
    font-size: 3.375vw;
    text-align: center;
    line-height: 13.33vw;
}
button {
    background-color: #824CF4;
    color: white;
    border: none;
    font-weight: 800;
    border-radius: 3.2vw;
    cursor: pointer;
}
.btn a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    margin-top: 4.27vw;
}

svg {
    width: 13.33vw;
    fill: #824CF4;
    margin-top: calc(50% - 13.33vw);
    margin-left: calc(50% - 13.33vw);
    display: none;
}

.loading {
    animation: loading 6s linear infinite;
}

@keyframes loading {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

@media only screen and (min-width: 800px) {
    body {
        background-color: white;
    }
    .navbar {
        display: flex;
        align-items: center;
        width: 79.774vw;
        padding: 4.688vw 0;
        margin-left: auto;
        margin-right: auto;
    }
    .navbar h1 {
        font-weight: 400;
        font-size: 2.197vw;
    }
    .navbar h1 span {
        font-weight: 800;
        color: #824CF4;
    }
    .navbar a {
        font-weight: 700;
        font-size: 1.1vw;
        text-decoration: none;
    }
    .navbar .nav-support {
        color: black;
        display: inline-block;
        width: 11.37vw;
        text-align: center;
        margin-left: auto;
    }
    .navbar .nav-main {
        height: 4.34vw;
        width: 12.413vw;
        background-color: #824CF4;
        border-radius: 1.04vw;
        text-align: center;
        line-height: 4.34vw;
        color: white;
        margin-left: 2.78vw;
    }
    .support-container {
        background-color: #f8f8f8;
        width: 79.774vw;
        padding: 4.6vw 0;
        background-color: #f8f8f8;
        border-radius: 1.736vw;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18.576vw;
        min-height: 36.545vw;
    }
    form {
        width: 28.82vw;
    }
    .header {
        display: none;
    }
    input {
        height: 4.34vw;
        font-size: 1.1vw;
        border-radius: 1.042vw;
        border: 0.2vw solid transparent;
        margin-bottom: 0.955vw;
        padding: 0 1.563vw;
    }
    input.error {
        border: 0.2vw solid #824CF4;
    }
    .first-name {
        width: 13.89vw;
    }
    .number {
        width: 13.89vw;
    }
    textarea {
        height: 11.285vw;
        font-size: 1.1vw;
        border-radius: 1.042vw;
        border: 0.2vw solid transparent;
        padding: 1.302vw 2.17vw 0 1.563vw;
        margin-bottom: 1.128vw;
    }
    textarea.error {
        border: 0.2vw solid #824CF4;
    }
    .btn {
        height: 4.34vw;
        font-size: 1.1vw;
        line-height: 4.34vw;
    }
    div.btn {
        display: none;
    }
    button {
        border-radius: 1.042vw;
    }
    
    svg {
        width: 4.340vw;
        margin-top: calc(12.1vw);
        margin-left: calc(50% - 2.17vw);
    }
}