body {
    background: var(--bg-grey);
}

.register-container {
    margin: 120px auto 0px auto;
    width: 90%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.progress-bar {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 70%;
    height: 4px;
    position: relative;
}

.progress {
    width: 25px;
    border-radius: 50%;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: var(--main-blue);
}

.progress::before {
    content: '';
    z-index: -1;
    background-color: var(--main-blue);
    height: 4px;
    width: 50%;
    left: 0;
    position: absolute;
}

.progress:nth-child(1) {
    margin-left: auto;
    margin-right: auto;
}

.progress:nth-child(2) {
    background: #CACACA;
}

.progress:nth-child(2)::before {
    right: 0;
    left: unset;
    width: 50.5%;
    background: #CACACA;
}

.register-container h1 {
    color: var(--main-blue);
    font-size: 30px;
    text-align: center;
    margin-top: 50px;
}

.register-container form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 70%;
    flex-direction: column;
}

.register-container form input,
.register-container form select {
    width: 100%;
    max-width: 420px;
    padding: 10px 5px 10px 15px;
    border: 1px solid rgba(0, 0, 0, 0.09);
    background: white;
    font-size: 16px;
    margin-top: 20px;
}

.register-label {
    padding-top: 5px;
    margin-bottom: -10px;
}

.register-label2 {
    padding-top: 15px;
    margin-bottom: -10px;
}

.single-select {
    width: 100%;
    max-width: 420px;
}

input[type="checkbox"] {
    padding: 0px !important;
    width: unset !important;
    margin-right: 10px;
    margin-top: 2px !important;
}

.checkbox-container {
    width: 100%;
    display: flex;
    max-width: 420px;
    align-items: start;
    font-size: 14px;
    justify-content: start;
    margin-top: 40px;
    color: var(--grey-font);
    letter-spacing: 2px;
}

.register-container form button {
    background: var(--main-blue);
    color: white;
    padding: 10px 50px;
    border: 0px;
    margin-top: 30px;
    border-radius: 5px;
    width: 100%;
    max-width: 420px;
    cursor: pointer;
}

.verify-container {
    text-align: center;
}

.verify-container .progress:nth-child(2) {
    background: var(--main-blue);
}

.verify-container .progress:nth-child(2)::before {
    background: var(--main-blue);
}

.verify-container h4 {
    color: var(--main-blue);
}

.verify-container * {
    margin-top: 20px;
}

.verify-container p {
    color: var(--grey-font);
}

.resend-email {
    margin-top: 40px;
}

.verify-container a:not(.blue-button) {
    margin-top: 20px;
    color: var(--main-blue);
}

.verify-container .blue-button i {
    margin-top: 0px;
}

.conditions_checkbox a {
    text-decoration: underline;
    color: var(--main-blue);
    font-weight: unset;
    letter-spacing: unset;
}