#register {
    background-image: url(../img/register_page_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 753px;
    display: flex;
    justify-content: space-between;
    padding: 50px;
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

#register .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#register .form-wrapper {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 20px;
    gap: 7px;
    border-radius: 11.56px 11.56px;
    backdrop-filter: blur(15.40772533416748px);
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

#register-form {
    display: flex;
    flex-direction: column;
    width: 600px;
    border-radius: 16px 16px;
    padding: 50px 40px;
    gap: 21px;
    background-color: #FFF;
    margin-bottom: 0;
}

#register-form .register-title h2 {
    line-height: 35px;
    font-weight: 500;
    font-size: 26px;
    letter-spacing: 0;
    color: #000;
    font-family: "Inter", sans-serif;
    text-align: center;
    max-width: 283px;
    margin: 0 auto;
}

#register-form .form-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#socialOptions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px auto 0px auto;
    gap: 20px;
}

#register-form .form-body .continue-message {
    display: flex;
    flex-direction: row;
    margin: auto;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

#register-form .content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#register-form .form-body .form-group {
    margin-bottom: 0;
    width: 100%;
}

#register-form .form-body .form-group input.form-control:not(input.term-condition) {
    display: flex;
    gap: 10px;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0;
    width: 100%;
}

#togglePassword,
#toggleConfirmPassword {
    position: absolute;
    top: 30%;
    right: 10px;
}

#register-form a.forgot-pass-link {
    display: flex;
    line-height: 33px;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0;
    text-decoration: none;
    color: var(--link-blue);
}

#register-form p.register-summary {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
}

#registerSubmitBtn {
    color: #FFF;
    background-color: var(--btn-color-green);
    border-color: var(--btn-color-green);
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 23px;
    padding: 24px 27px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 59px;
}

#registerSubmitBtn:hover {
    color: #FFF;
    background-color: var(--btn-color-green-hover);
    border-color: var(--btn-color-green-hover);
}

#register a.register-btn {
    width: 134px;
    height: 29px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--link-green);
    display: flex;
    flex-direction: row;
    gap: 34px;
    text-decoration: none;
    color: var(--link-green);
    margin: auto;
}

#register a.register-btn:hover {
    border-bottom: 1px solid var(--link-green-hover);
    color: var(--link-green-hover);
}

#register .register-btn span {
    white-space: nowrap;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 25px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
}

#register a.register-btn svg {
    width: 16px;
    height: 16px;
    align-self: center;
}

#register .tc {
    display: flex;
    flex-direction: row;
    gap: 20px;
    border: 0;
    justify-content: center;
    vertical-align: middle;
    align-items: center;
}

#register .tc p {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0;
    margin: 0;
}

#register .tc input.term-condition {
    width: 30px;
    height: 30px;
}

#register .tc a {
    color: var(--link-green);
}

#register .tc a:hover {
    color: var(--link-green-hover);
}

#register-dotted {
    border-top: 1px dotted #000;
    padding: 6px;
    margin-top: 50px;
    /* margin-bottom: 20px; */
}

#register-dotted-text {
    float: left;
    padding: 0 10px 0 10px;
    margin: -20px 0 0 38%;
    background: var(--text-white);
}

@media only screen and (max-width: 769px) {
    #register {
        background-image: url(../img/register_page_bg.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media only screen and (max-width: 550px) {
    #register {
        padding: 30px 0px;
        min-height: 650px;
        margin: 0;
    }

    #register .form-wrapper {
        padding: 15px;
        gap: 5px;
        border-radius: 8.68px;
        backdrop-filter: blur(11.579329490661621px);
        width: auto;
    }

    #register-form {
        padding: 37.58px 30.06px;
        border-radius: 12.14px;
        gap: 15.78px;
        width: 100%;
        max-width: none;
    }

    #registerSubmitBtn {
        gap: 21.79px;
        border-radius: 75.15px;
        padding: 22px 20px;
        height: 59px;
    }

    #register-form .register-title h2 {
        text-align: left;
        margin-left: 0;
    }
}

@media screen and (max-width: 425px) {
    #register-dotted-text {
        margin: -20px 0 0 30%;
    }
}

@media only screen and (max-width: 376px) {
    #register {
        padding: 30px 5px;
    }

    #register .container {
        padding-left: 0px;
        padding-right: 0px;
    }

    #register-form {
        padding: 15px;
        border-radius: 12.14px;
        gap: 15.78px;
        width: 100%;
        max-width: none;
    }
}
