* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100svw;
    background-image: url("/static/media/bilbao2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.menuBaseEntrance {
    display: none;
}

.loginBox{
    background-color: transparent;
    width: 30%;
    height: 100%;
    padding: .75rem;
}

.loginBoxContent{
    background: rgba(255, 255, 255, 0);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.supportLoginImage{
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.loginLogoContainer{
    width: 90%;
    height: auto;
}

.loginLogoContainer img{
    width: 100%;
}

.ssoOption {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: rgb(255, 255, 255);
    height: 3.5rem;
    border-radius: 1rem;
}

.ssoOption:hover {
    cursor: pointer;
    transform: scale(1.03);
    transition: transform 0.2s;
}

.ssoOption img {
    height: 35%;
    margin-left: 30px;
    margin-right: 13px;
}

.ssoOption a {
    text-decoration: none;
    color: #000;
}

.loginBoxContent h1 {
    margin-top: 5rem;
    margin-bottom: 1rem;
}

