@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,300;10..48,400&family=Manrope&display=swap');
html {
    scroll-behavior: smooth;
}

body {
    height: 80vh;
}

.formbox {
    height: auto;
    width: 100%;

}

.formarea {
    width: 25%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

form {
    margin-top: 5vh;

}

form i {
    width: 20px;

}

form label {
    margin-top: 5%;
}

form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid black;
}

.submitbtn {
    text-align: center;
    margin-top: 6%;
}

.submitbtn button {
    width: 35%;
    border: 1px solid black;
    border-radius: 15px;
    height: 6%;
}

p {
    font-size: 13px;
    text-align: right;
}

a {
    text-decoration: none;
    color: black;

}

.tc {
    display: flex;
    width: 100%;
    margin-top: 15px;

}

.tc input {
    margin-top: auto;
    height: 15px;

}

.tc label {
    width: 100%;
}

.wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 8px;
    background: #fff;

}

.wrapper .pass-field {
    height: 65px;
    width: 100%;
    position: relative;
}

.pass-field input {
    width: 100%;
    height: 100%;
    outline: none;
    border-bottom: 1px solid black;
}

.pass-field input:focus {
    padding: 0 16px;
    border: 2px solid #4285F4;
}

.pass-field i {
    right: 18px;
    top: 50%;
    color: #999;
    cursor: pointer;
    position: absolute;
    transform: translateY(-50%);
}

.wrapper .content {
    margin: 20px 0 10px;
}

.content p {
    color: #333;

}

.content .requirement-list {
    margin-top: 20px;
}

.requirement-list li {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.requirement-list li i {
    width: 20px;
    color: #aaa;

}

.requirement-list li.valid i {

    color: #4285F4;
}

.requirement-list li span {
    margin-left: 12px;
    color: #333;
}

.requirement-list li.valid span {
    color: #999;
}

@media screen and (max-width: 500px) {

    body,
    .wrapper {
        padding: 15px;
    }

    .wrapper .pass-field {
        height: 55px;
    }

    .pass-field input,
    .content p {
        font-size: 1.15rem;
    }

    .pass-field i,
    .requirement-list li {
        font-size: 1.1rem;
    }

    .requirement-list li span {
        margin-left: 7px;
    }
}

@media screen and (max-width: 1100px) {
    .formarea {
        width: 90%;
        font-size: 25px;
    }

    form i {
        width: 40px;
    }

    p {
        font-size: 25px;
    }

    .tc input {
        margin-top: auto;
        height: 30px;

    }
}



footer {
    background: #101010;
    padding: 86px 0;
}

footer .single-content {
    text-align: center;
    padding: 115px 0;
}

footer .single-box p {
    color: #fff;
    line-height: 1.9;
    text-align:left;
}

footer .single-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

footer .single-box .card-area i {
    color: #ffffff;
    font-size: 20px;
    margin-right: 10px;
}

footer .single-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

footer .single-box ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 2.5;
    font-weight: 100;
}

footer .single-box h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

footer #basic-addon2 {
    background: #fe1e4f;
    color: #fff;
}

footer .socials i {
    font-size: 18px;
    margin-right: 15px;
}

@media (max-width: 767px) {
    footer .single-box {
        margin-bottom: 50px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    footer .single-box {
        margin-bottom: 50px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,300;10..48,400&family=Manrope&display=swap');

header {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-family: 'Manrope', sans-serif;
    width: 80%;
    height: 140px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
    overflow: hidden;
}

nav .logo {
    width: 120px;
    margin-top: 8px;
}

nav .logo {
    display: none;
}

nav ul {
    display: flex;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: black;
    display: block;
    margin: 0 2px;
    font-weight: 600;
    padding: 8px 18px;
    transition: 0.2s;
    border-radius: 30px;
    cursor: pointer;
}

nav ul li a:hover {
    background-color: black;
    color: white;
}

nav ul li a:active {
    background-color: black;
    color: white;
}

.hamburger {
    display: none;
    height: fit-content;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 5px;
    transition: 0.2s;
}

.hamburger:hover {
    background: #f6f4ff;
}

.hamburger div {
    width: 40px;
    height: 6px;
    margin: 6px 0;
    background: #212526;
}

@media only screen and (max-width: 1100px) {
    header {
        width: 90%;
        padding: 0 20px;
    }

    nav {
        position: absolute;
        left: -470px;
        top: 0;
        z-index: 999;
        width: 450px;
        height: 100vh;
        background-color: #fefefe;
        transition: 0.2s;
        box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.05);
    }

    #nav_check:checked~nav {
        left: 0;
    }

    nav .logo {
        display: block;
        height: 70px;
        display: flex;
        align-items: center;
        margin-left: 30px;

    }

    .logo h4 {
        font-size: 40px;
    }

    nav .logo h4 {
        font-size: 40px;
    }

    nav ul li a {
        margin-bottom: 5px;
        padding: 10px 15px;
        border-radius: 5px;
        font-size: 40px;
    }

    nav ul {
        display: block;
        padding: 0 20px;
        margin-top: 30px;
        font-size: 30px;
    }

    .hamburger {
        display: block;
    }
}