.imgBG {
    border-radius: 30px;
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

.auth {
    position: relative;
}

.overlay__title {
    font-size: 200%;
    font-weight: 750;
    color: white;
    text-align: center;
}

.overlay-content {
    padding: 50px;
    width: fit-content;
    backdrop-filter: blur(4px);
    z-index: 0;
    border-radius: 30px;
    background-color: #00000023;
}

.overlay {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay__btn-container {
    padding-top: 3%;
}


.msAuthBtn {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 300px;
    padding: 0 10px;
    border-radius: 5px;
    background-color: #ff7300;
    color: white;
    font-weight: 1000;
    font-size: 1.5em;
    text-decoration: none;
    outline: none;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
    position: relative;
}

.msAuthBtn:hover {
    transform: scale(1.1);
    box-shadow: 0px 15px 20px #ff730097;
}

.msAuthBtn .content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.msAuthBtn .msIcon {
    height: 50px;
    width: 50px;
    margin-left: 0;
    position: absolute;
    left: 10px;
}

