/*********************** Sign Up & Login ************************/
.sign_up {
    height: 100vh;
    width: 100%;
    min-height: 700px;
}

.sign_up .notice {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sign_up_relative {
    height: auto;
}

.password_change {
    height: 100%;
    min-height: calc(100vh - 126px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.password_change .form_panel {
    height: auto !important;
}

.half_width {
    width: 50%;
    margin-left: 50%;
    transition: none;
}

.sign_up .image_panel {
    height: calc(100% - 106px);
    width: calc(50% - 40px);
    margin-left: 20px;
    margin-top: 86px;
    border-radius: 10px;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: fixed;
}
  
.sign_up .image_panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.sign_up .form_panel {
    height: calc(100% - 88px);
    width: 50%;
    padding-top: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: calc(50% - 10px);
}

.sign_up .long_form {
    height: auto;
    overflow-y: unset;
    padding: 160px 0 60px;
}

.sign_up form h1,
.sign_up .notice h1 {
    margin-top: -15px;
    text-align: center;
}

.wider_heading {
    width: 120%;
    margin-left: -10%;
}

.sign_up .full_width_form_panel {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
}

.sign_up .form_panel form,
.sign_up .notice .content {
    width: 400px;
}

.sign_up .form_panel form h1 {
    margin-bottom: 20px;
}

.sign_up .form_panel form .button,
.sign_up .form_panel form input[type="submit"],
.sign_up .notice .content .button {
    margin-top: 35px;
}

.sign_up_label {
    margin-top: 35px;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark-blue);
}

.sign_up_field,
#id_email,
#id_new_password1,
#id_new_password2,
#id_old_password {
    font-size: 14px;
    color: var(--form-grey);
    background-color: transparent;
    border: solid 2px var(--form-grey);
    border-radius: 5px;
    height: 46px;
    width: 100%;
    padding-left: 15px;
    box-sizing: border-box;
    outline: none;
    font-family: 'Roboto', sans-serif !important;
}

.sign_up_textarea {
    height: 160px;
    max-width: 100%;
    max-height: 400px;
    padding: 10px 15px;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif !important;
}

.sign_up_field::placeholder {
    color: var(--form-grey);
}

.sign_up_field:focus,
.sign_up_field:active,
#id_email:focus,
#id_email:active,
#id_new_password1:focus,
#id_new_password1:active,
#id_new_password2:focus,
#id_new_password2:active,
#id_old_password:focus,
#id_old_password:active {
    outline: none;
}

.sign_up form a p,
.extra_details {
    margin: 1em 0 0 0;
    color: var(--green);
}

.sign_up_terms {
    padding-top: 5px;
    padding-left: 5px;
    color: var(--green);
    font-weight: 700;
}

.skip_link {
    color: var(--green);
    text-align: center;
    width: 100%;
    margin: -10px auto;
}

.sign_up_info {
    text-align: center;
    margin-bottom: -10px;
}

.bottom_sign_up_info {
    font-size: 15px;
    margin-bottom: 0;
}

.password_rules {
    /* color: var(--form-grey); */
    margin-top: 15px;
    margin-bottom: 20px;
}

.password_rules li i {
    margin-right: 8px;
    margin-left: 15px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-animation: autofill 0s forwards;
    animation: autofill 0s forwards;
}

@keyframes autofill {
    100% {
        background: transparent;
        color: var(--form-grey);
    }
}

@-webkit-keyframes autofill {
    100% {
        background: transparent;
        color: var(--form-grey);
    }
}

.full_width {
    width: 100% !important;
}

.sign_up .notice .signup_complete {
    width: 550px;
}

.signup_complete .buttons_container {
    justify-content: center;
}

.signup_complete .buttons_container .test_button {
    margin-left: 25px;
}

.email_icon {
    width: 60px;
    height: 60px;
    border: 5px solid var(--green);
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
}

.email_icon i {
    font-size: 22px;
    color: var(--green);
}

.toggle_password {
    margin-left: 10px;
    cursor: pointer;
}

.errorlist {
    text-align: center;
    color: var(--red);
    font-weight: 700;
}

.no_hamburger {
    margin-right: 0 !important;
}

.steps {
    text-align: center;
    color: var(--bronze);
    margin-top: -5px;
}

.organisation_form {
    height: max-content !important;
    padding-top: 140px !important;
    padding-bottom: 60px !important;
}

/*********************** Edit Profile Form ************************/
.edit_profile_form {
    width: 400px;
    margin: 60px auto 0;
}

.edit_profile_form .button {
    width: 100%;
    margin-top: 35px;
}

.form_error {
    text-align: center;
    color: var(--red);
    font-weight: 700;
}

@media (max-width: 950px) {
    .sign_up {
        width: 100%;
    }

    .half_width {
        width: 100%;
        margin-left: 0;
        transition: none;
    }

    .sign_up .image_panel {
        display: none;
    }

    .sign_up .form_panel {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .sign_up .form_panel,
    .sign_up .full_width_form_panel,
    .sign_up .notice .content {
        width: calc(100% - 40px);
        margin: 0 auto;
    }

    .sign_up .form_panel form,
    .edit_profile_form {
        width: 100%;
    }

    .wider_heading {
        width: 100%;
        margin-left: 0;
    }

    .signup_complete .buttons_container {
        display: block;
    }

    .signup_complete .buttons_container .button {
        width: 100%;
    }

    .signup_complete .buttons_container .test_button {
        margin: 25px 0 0 0;
    } 

    .sign_up .notice .signup_complete {
        margin-top: 50px;
    }

    .password_change_mobile {
        margin: 60px auto -60px;
    }
}