@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

::-webkit-scrollbar {
    display: none;
}

body {
    font-family: "Roboto", helvetica, sans-serif;
    font-size: 13px;
    color: #6b6b6b;
}

header {
    background: #f6f6f6;
    height: 60px;
    border-bottom: 1px solid #eaeaea;
    padding: 0 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    z-index: 1;
    top: 0;
}

header h1 {
    margin: 0;
    text-align: center;
    line-height: 60px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 24px;
}

footer {
    background: #f6f6f6;
    height: 60px;
    border-top: 1px solid #eaeaea;
    padding: 0 20px;
    position: fixed;
    width: 100%;
    z-index: 1;
    bottom: 0;
}

.container {
    margin: 60px auto;
}

.container::after {
    content: "";
    clear: both;
    display: table;
}

aside {
    width: 60%;
    min-height: calc(100vh - 120px);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    float: left;
}

aside h2 {
    font-weight: 400;
}

aside p {
    font-size: 20px;
    line-height: 36px;
    font-weight: 300;
}

aside h4 {
    text-transform: uppercase;
    text-align: center;
    margin: 10px 0 0;
    font-size: 16px;
    font-weight: 200;
}

main {
    min-height: calc(100vh - 120px);
    padding: 60px;
    float: right;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-left: 1px solid #eaeaea;
}

main img {
    max-width: 300px;
    margin: 0 auto;
}

main input {
    border: none;
    border: 0;
    border-bottom: 1px solid #eaeaea;
    padding: 8px 0px 8px 0px;
    width: 100%;
    color: #555;
    background: transparent;
    outline: none;
    border-radius: 0;
    font-size: 13px;
    margin-bottom: 20px;
}

main button {
    width: 100%;
    padding: 10px 15px 10px 15px;
    border: 0;
    color: #FFF;
    background: -webkit-linear-gradient(top, #98d463 0%, #66891d 100%);
    border-radius: 0.25rem;
    margin-top: 13px;
    text-transform: uppercase;
    opacity: 0.6;
}

main .form-check {
    padding-left: 20px;
    text-align: left;
}

main .form-check-label {
    line-height: 22px;
    padding-left: 5px;
}

main .form-check-input {
    width: auto;
}

footer ul {
    padding: 0;
    margin: 0;
    text-align: center;
}

footer li {
    display: inline-block;
    list-style-type: none;
    padding: 10px 15px;
    text-transform: uppercase;
    text-align: center;
    font-size: 10px;
}

footer li span {
    display: block;
    font-size: 16px;
}


@media screen and (max-width: 991px) {
    .container {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    aside {
        width: 100%;
        min-height: auto;
        float: none;
        padding: 30px;
        text-align: justify;
    }

    main {
        width: 100%;
        min-height: auto;
        float: none;
        border-left: 0;
        border-top: 1px solid #eaeaea;
        padding: 30px;
        text-align: justify;
    }
}