.monstro-job-openings{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: Poppins-Regular;
    min-height: 24rem;
    width: 100%;
    overflow: hidden;
}
.monstro-job-openings .background{
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.monstro-job-openings .background .bg{
    height: 100%;
    z-index: 1;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, black 10%, black 90%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, black 10%, black 90%, rgba(0, 0, 0, 0) 100%);
}
.monstro-job-openings .background .full-bg{
    position: absolute;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    pointer-events: none;
    width: 110%;
    height: 110%;
    filter: blur(50px);
    -webkit-filter: blur(50px);
}

.monstro-job-openings .join-team{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 95%;
    max-width: 25rem;
    text-align: center;
    background-color: var(--job-signup-bg);
    border-radius: 1rem;
    padding: 3rem;
    margin: 2rem;
    z-index: 1;
}

.monstro-job-openings .join-team .title{
    font-family: Poppins-Extra-Bold;
    color: var(--job-signup-text);
    margin-bottom: 3rem;
    font-size: 17pt;
}
.monstro-job-openings .join-team .link{
    text-decoration: none;
    font-size: 10pt;
    color: var(--job-opening-btn-text);
    border: 3px solid var(--job-opening-btn-border);
    border-radius: 2rem;
    padding: 0.5rem 2rem;
    font-family: Poppins-Bold;
    font-size: 12pt;
}
.monstro-job-openings .join-team .link:hover{
    background-color: var(--job-opening-btn-bg);
    color: var(--job-opening-btn-text-hover);
}