@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

.signup {
    position: relative;
    overflow: hidden;
    padding: 140px 0px;
    /* height: 580px; */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(/assets/img/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.signup .container-signup {
    width: 80%;
    /* margin-bottom: 60px; */
    padding:40px 0px;
}

.signup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    border-radius: inherit;
}

.signup * {
    position: relative;
    z-index: 2;
}

.top-signup-form {
    order: 1;
}

.bottom-signup-text {
    order: 2;
}

.web-log-hide {
    display: none;
}

.everything-you-need {
    text-align: center;
}

.everything-you-need h2 {
    overflow-wrap: break-word;
    font-family: 'Manrope';
    font-weight: 500;
    font-size: 78px;
    line-height: 1.037;
    color: white;
}

.form {
    position: relative;
    z-index: 1;
    padding: 30px 30px;
    border-radius: 20px;
    background-color:#d9d8d89c;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form input {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: none;
    outline: none;
    padding: 0px 8px;
    margin-top: 5px;
    font-size: smaller;
}

.form input:focus {
    box-shadow: none;
}

.form .button1 {
    font-size: smaller;
    background-color: rgb(6, 75, 6);
    color: yellow;
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: none;
    transition: ease-in-out 0.5s;
}

.form .button1:hover {
    background-color: rgba(6, 75, 6, 0.726);
}

.form .button2 {
    background-color: transparent;
    color: white;
    height: 40px;
    border-radius: 8px;
    border: none;
}

.form .button2:hover {
    background-color: transparent;
    color: rgb(211, 208, 208);
}

.form button:focus {
    outline: none;
    box-shadow: none;
}

.signup-footer {
    background-color: white;
    height: 60px;
    align-items: center;
    display: flex;
    width: 100%;
}

.datalink-footer-logo {
    width: 100px;
    display: block;
}

.signup-copyright {
    font-size: 15px;
}

.signup-copyright br {
    display: none;
}

@media (max-width:2560px){
    .container-signup{
        max-width:50% ;
    }
    .signup{
        height:100%;
        display: flex;
        align-items: center;
    }
}

@media (max-width:1880px){
    .container-signup{
        max-width:85% ;
    }
    .signup {
        height: 100%;
    }
}

@media screen and (max-width: 1105px) {
    .container-signup{
        max-width:95% ;
    }
    .signup .container-signup {
        width: 90%;
    }
    .signup {
        height: 500px;
    }

    .form {
        padding: 20px 30px;
    }

    .everything-you-need h2 {
        font-weight: 500;
        font-size: 60px;
        padding: 0px 30px;
    }

}
@media screen and (max-width:991px){
    .everything-you-need h2{
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 912px) {
    .everything-you-need h2 {
        font-weight: 500;
        font-size: 55px;
    }
}

@media screen and (max-width: 768px) {
    .signup .container-signup {
        width: 98%;
    }

    .everything-you-need h2 {
        font-weight: 500;
        font-size: 50px;
        padding: 0px 30px;
    }

    .form {
        padding: 20px 20px;
    }

    .datalink-footer-logo {
        width: 100px;
        display: none;
    }

    .signup-copyright {
        font-size: 13px;
        text-align: center;
        margin: auto;
    }
}
@media screen and (max-width:575px){
    .everything-you-need h2{
        margin-top: 5rem;
    }
}
@media (min-width: 576px) {

    .top-signup-form {
        order: 2;
    }

    .bottom-signup-text {
        order: 1;
    }
    
}

@media screen and (max-width: 430px) {
    .container-signup{
        max-width:100% ;
    }
    .web-log-hide {
        display: block;
        margin-bottom: 30px;
    }

    .web-log {
        display: none;
    }
    .signup {
        height: 560px;
    }
    .signup-footer{
        bottom: -58px;
    }

    .signup .container-signup {
        width: 100%;
    }

    .everything-you-need h2 {
        font-weight: 500;
        font-size: 35px;
        padding: 0px 25px;
        margin-top: 18px;
    }

    .signup-copyright br {
        display: block;
    }

}

@media screen and (max-width: 375px) {
    .form {
        padding: 10px 15px;
    }

    .everything-you-need h2 {
        font-weight: 500;
        font-size: 28px;
    }
}

@media screen and (max-width: 320px) {
    .everything-you-need h2 {
        font-weight: 500;
        font-size: 25px;
        padding: 0px 10px;
    }
}
