.signUp-content {
    min-height: 944px;
}

.signUp-title {
    color: var(--color-dark);
    font-size: 3rem;
    font-weight: 700;
    @media (max-width: 576px) {
        font-size: 2.25rem;
    }
}

/* ----------- decoration-dots ---------- */
.decoration-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.decoration-dot-primary {
    background: var(--color-primary);
}

.decoration-dot-primary-50 {
    background: var(--color-primary);
    opacity: 0.5;
}

.decoration-dot-dark {
    background: var(--color-dark);
}

/* ------------- sign up -------------- */
#agreeButton:disabled {
    filter: grayscale(0.6) brightness(1.8);
    font-weight: 300;
    cursor: not-allowed;
}

.signUp-input-password {
    width: 548px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: 400;
    border: 1px solid var(--color-primary);
    border-radius: 50px;
    @media (max-width: 991.9px) {
        max-width: 90vw;
    }
}

.signUp-btn-cancel, .signUp-btn-cancel:hover{
    text-decoration: none;
    background: #fff;
    border: 0;
    border-radius: 50px;
    color: #000;
    filter: drop-shadow(0 0 0.3rem lightgrey);
    width: 120px;
    height: 43px;
    font-size: 1.25rem;
    font-weight: 700;
}

.signUp-btn-continue, .signUp-btn-continue:hover {
    text-decoration: none;
    background: var(--color-dark);
    border: 0;
    border-radius: 50px;
    color: #fff;
    filter: drop-shadow(0 0 0.3rem lightgrey);
    width: 120px;
    height: 43px;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-round {
    width: 80px;
    height: 80px;
}

.step-round p:first-of-type {
    font-size: 0.8rem;
    font-weight: 700;
}

.step-round p:last-of-type {
    font-size: 2rem;
    font-weight: 700;
}

.signUp-step-name {
    position: absolute;
    bottom: -40px;
    font-size: 1.25rem;
    font-weight: 700;
    text-wrap: nowrap;
    @media (max-width: 991.9px) {
        font-size: 1rem;
    }
}

.signUp-progress {
    position: relative;
}

.signUp-progress-finishedStep .step-round {
    background: var(--color-dark);
    color: #fff;
}

.signUp-progress-futureStep .step-round {
    background: var(--color-primary);
    color: #fff;
}

.step-line-solid {
    border-bottom: 5px solid var(--color-primary);
}

.step-line-dashed {
    border-bottom: 5px dashed var(--color-primary);
}

.signUp-step-line {
    width: 130px;
}

.signUp-progress-mobile .step-round{
    height: 40px;
    width: 40px;
}

.signUp-progress-mobile .step-round p{
    font-size: 1.25rem !important;
}

.signUp-progress-mobile .step-line-solid {
    width: 60px;
    border-bottom: 3px solid var(--color-primary);
}

.signUp-progress-mobile .step-line-dashed {
    width: 60px;
    border-bottom: 3px dashed var(--color-primary);
}

.signUp-step-name-mobile {
    position: absolute;
    left: 0;
    bottom: -50px;
    text-wrap: nowrap;
}


.signUp-message-block-scroll {
    height: 345px;
    overflow: auto;
    @media (max-width:768px) {
        height: 560px;
    }
}

.signUp-message-block-scroll::-webkit-scrollbar {
    border-radius: 50px;
    background: #f6f6f6;
    width: 14px;
}

.signUp-message-block-scroll::-webkit-scrollbar-thumb {
    background: #dbdbdb;
    border-radius: 50px;
    width: 8px;
    margin: 2px;
}

.signUp-uploadId {
    aspect-ratio: 428/243;
    cursor: pointer;
}

.signUp-input-group {
    position: relative;
}

.signUp-input {
    width: 100%;
    height: 60px;
    font-size: 1.5rem;
    font-weight: 400;
    border: 1px solid var(--color-primary);
    border-radius: 50px !important;
    @media (max-width: 768px) {
        font-size: 1rem;
        padding-left: 3rem;
    }
}

.signUp-error {
    background: #ffe8e8;
    border-radius: 50px;
}

.signUp-passwordStrength div{
    height: 0.5rem;
}

.signUp-passwordStrength span{
    position: absolute;
    left: 50%;
    bottom: -35px;
    transform: translate(-50%, -50%);
}

.get-verify-code-btn {
    min-width: 220px; 
    font-size: 1.25rem;
    @media (max-width: 575px) {
        width: 100%;
    }
}

.next-step-btn {
    width: 145px;
    font-size: 1.25rem;
}

.signUp-message-complete {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 2.5rem;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    70% {
        transform: rotate(310deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.signUp-loadingImg {
    width: 90px;
    height: 90px;
    animation: rotate 1.5s linear infinite;
}

.signUp-card {
    height: 79px;
    filter: drop-shadow(0 4px 2px var(--color-dropshadow-header));
}

.signUp-card:hover {
    filter: brightness(1.3) drop-shadow(0 4px 3px var(--color-dropshadow-card-hover));
}

.signUp-card-tag {
    transform: translate(-50%, -50%);
    left: 30px;
    top: 50%;
    @media (max-width:576px) {
        transform: translate(0, 0);
        top: -10px;
        left: -5px;
    }
}

.showAccount-lable {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 700;
}

.signUp-btn-cancel, .signUp-btn-cancel:hover{
    text-decoration: none;
    background: #fff;
    border: 0;
    border-radius: 50px;
    color: #000;
    filter: drop-shadow(0 0 0.3rem lightgrey);
    width: 120px;
    height: 43px;
    font-size: 1.25rem;
    font-weight: 700;
}

.signUp-btn-continue, .signUp-btn-continue:hover {
    text-decoration: none;
    background: var(--color-dark);
    border: 0;
    border-radius: 50px;
    color: #fff;
    filter: drop-shadow(0 0 0.3rem lightgrey);
    width: 120px;
    height: 43px;
    font-size: 1.25rem;
    font-weight: 700;
}

.breadcrumb-current {
    color: var(--color-primary);
    font-weight: 700;
    filter: brightness(0.9);
}