body {
    background: #EAE9EA !important;
}

.col-wrap {
    display: grid;
    grid-template-columns: 60% 40%;
    padding: 5px;
}

.col1, .col2 {
    min-height: 98.8vh;
    display: inline;
}

.col2 {
    background: white;
    border-radius: 15px;
    padding: 50px;
}

.header-wrap {
    margin-bottom: 50px;
    text-align: center;
}

.logo {
    height: 50px;
    width: 50px;
    margin-bottom: 25px;
}

.title {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 10px;
}

.signup-h2 {
    font-size: 15px;
}

#password-confirm-input, #password-input {
    display: flex;
}

#p1, #p2 {
    width: 10%;
    border-bottom: 2px solid;
}

.remember-me-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 5%;
}

#remember-me {
    width: 15px;
    appearance: auto;
    border-radius: 0;
    padding: 0;
}

#remember-me label {
    font-size: 14px;
}

#forgotten-pass {
    font-size: 13px;
    text-align: right;
    text-decoration: none;
    margin-top: 35px;
}

#already-a-member2 {
    top: inherit;
    margin-top: 20px;

}

.already-a-mem {
    position: absolute;
    top: inherit;
    text-align: center;
    width: 32%;
    margin-top: 20px;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}

@media only screen and (max-width: 959px) {
    .col-wrap {
        display: block;
    }

    .col1 {
        display: none;
    }

    .col2 {
        display: block;
    }

}

@media only screen and (max-width: 600px) {
    .col2 {
        padding: 25px;
    }
    .already-a-mem {
        width: 74%;
    }
}

@media only screen and (max-width: 330px) {
}


