.thirdAccess {
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    padding-top: 40px;
    gap: 15px;
}

.thirdAccess:before {
    content: "Oppure effettua l'accesso";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 12px;
    color: #a8a8a8;
    background: #fff;
    z-index: 99;
    width: auto;
    padding: 0px 10px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.thirdAccess:after {
    content: "";
    position: absolute;
    width: 70%;
    height: 1px;
    background: #dddddd;
    display: block;
    top: 29px;
    left: 50%;
    transform: translateX(-50%);
}

.thirdAccess > a {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 15px;
    font-size: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 10px 0px #d4d4d478;
    color: #939393;
    margin-top: 20px;
    transform: scale(1);
    transition: all 0.1s ease-in-out;
    gap: 5px;
    width: 100%;
}

.thirdAccess > a:hover {
    transform: scale(1.04);
    transition: all 0.3s ease-in-out;
}


.thirdAccess > a > img {
    height: 15px;
    position: relative;
    transform: scale(1);
}

.thirdAccess > a:hover > img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

form > button[type="submit"] {
    width: 100%;
    padding: 15px !important;
    border-radius: 12px !important;
}

.guestbg {
    background: url(../images/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.guestbg:before {
    --secondary: #ffffff;
    --primary: #d6ecff;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-45deg, var(--secondary), var(--secondary), var(--primary), var(--secondary));
    background-size: 400% 400% !important;
    animation: gradientXY 5s ease infinite !important;
    opacity: 0.4;
}