.modal-backdrop {
    z-index: 9999;
}
#registerModal {
    z-index: 99999;
}
.or-container {
    align-items: center;
    color: #ccc;
    display: flex;
    margin: 15px 0;
}
.line-separator {
    background-color: #ccc;
    flex-grow: 5;
    height: 1px;
}

.boxed-btn-modal {
    background-color: #2ac4b5;
    color: #fff;
    border: 1px solid #2ac4b5;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.boxed-btn-modal:hover {
    background-color: #7052fb;
    border-color: #7052fb;
}

.extra-login {
    color: black;
    border: 1px solid black;
    transition: all 0.3s ease 0s;
}

.extra-login:hover {
    background-color: #7052fb;
    color: white;
}

.check {
    display: inline-block;
    width: 2em;
    height: 2em;
    background-color: #e1e5fc;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.check::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #5e60ce;
}

.paragraph {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.paragraph__text {
    font-weight: bold;
    font-size: 1.2rem;
}

#label_register {
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    /* color: black; */
}

.input-register {
    border-radius: 5px;
    border: 1px solid #d1d5db;
    padding: 0.5rem;
}

.input-register:focus {
    outline: none;
    border: 1px solid #a5b4fc;
}

.sign-up {
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    border-radius: 5px;
    color: white;
    background-color: #7052fb;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.sign-up:hover {
    transition: all 0.3s ease 0s;
    background-color: #2ac4b5;
}

.sign-up-alertative {
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    border-radius: 5px;
    color: white;
    background-color: #7052fb;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

.sign-up-alertative:hover {
    text-decoration: none;
    color: white;
    background-color: #2ac4b5;
    transition: all 0.3s ease 0s;
}

.alreadyRegistered {
    font-size: 14px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 0.3rem;
}

.alreadyRegistered a {
    text-decoration: underline !important;
}

.alreadyRegistered a:hover {
    color: #0056b3;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}

@media screen and (max-width: 991px) {
    .login-shape {
        display: none;
    }
    .login-image {
        display: none;
    }
    .alreadyRegistered {
        margin-top: 1rem;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1200px;
    }
}
