header {
    display: none;
}

.signup {
    position: relative;
    background: linear-gradient(45deg, #008DCF, #3DB9E1);
    height: 100vh;
    z-index: 0;
}

.signup:before {
    position: absolute;
    content: ' ';
    background: url('../images/pattern.png') repeat center;
    background-size: 1800px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0.15;
    z-index: -1;
}

.signup .signup-container {

}

.signup .logo {
 width: 75%;
 margin-left: auto;
 margin-right: auto;
 display: block;
}

.signup .logo-authentication {
    position: fixed;
    bottom: 25px;
    left: 50%;
    height: 80px;
    transform: translateX(-50%);
    z-index: -1;
}

.signup .card {
    border: none;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 35%);
}

.signup form {
    width: 75%;
    margin: 0 auto;
}

.signup form input {
    background: #EBEBEB;
    border: none;
    box-shadow: inset 0 2px 5px #d1d1d1;
}

.signup form p {
    font-size: 12px;
}