﻿* {
    margin: 0;
    font-family: cursive;
}



.mainUno {
    height: 100vh;
    background-image: url('../images/bgint/bggrey.webp');
    background-size: cover;
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-evenly;
}


.btn-submitY {
    background-color: transparent !important;
    border: none;
    font-size: 13px;
    font-size: 1.5em;
}

.close-btn {
    position: static!important;
}



.tornaNew {
    font-family: "riseinside-regular", sans-serif;
    color: black;
    transition: all 0.3s ease;
    font-size: 30px;
    margin-bottom: -7%;
}

    .tornaNew:hover {
        color: #c79b14;
        text-decoration: none;
        cursor: pointer; 
        transform: scale(1.5); 
    }




body {
    margin: 0;
    padding: 0;
    height: 100vh;
}

.text-centerY {
    font-family: 'Cinzel Decorative';
}




@media (max-width: 650px) {
    .mainUno {
        height: 100vh;
        background-image: url('https://i.ibb.co/ZzBpJs4Z/KP96xOF.webp'), url('../images/ImgEsterne/loginPage.png'), url('../images/ImgEsterne/loginPage.png');
        background-size: cover, cover, cover;
        display: grid;
        align-items: start;
        justify-content: space-around;
        align-content: stretch;
        justify-items: center;
    }

    .ego-card {
        width: 100%;
        backdrop-filter: blur(10px);
        height: 30% !important;
    }
}

.ego-card {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: unfold 0.5s ease forwards;
    width: 30%;
    height: 25%;
    overflow: auto;
    overflow: hidden;
    color: #d097fa;
    backdrop-filter: blur(3px);
    animation: unroll 0.5s ease forwards;
}

@media (max-width: 650px) {
    .ego-card {
        width: 100%;
        backdrop-filter: blur(10px);
        height: 30% !important;
    }
}

@keyframes unroll {
    0% {
        height: 0;
        opacity: 0;
        transform: translate(-50%, -50%) scaleY(0);
    }

    100% {
        height: 25%;
        opacity: 1;
        transform: translate(-50%, -50%) scaleY(1);
    }
}




.egoDiv {
    position: relative;
    border-radius: 5px;
    color: #fff;
    margin-bottom: 25px;
}


input {
    font-size: 16px;
    border-radius: 7px;
    height: 35px;
    width: 90%;
    background-color: #1e1a1ac2 !important;
    color: white;
    border: 1px solid #7814c7 !important;
}

.close-btn {
    font-size: 30px;
    font-family: 'Cinzel Decorative';
    margin-left: 0%;
}

    .close-btn:hover {
        color: white;
    }


.fixed-bottom-center {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: max-content;
}

.scritteVis {
    font-family: 'Cinzel Decorative';
    font-weight: bolder;
    color: #ffe273;
}

.ego-card-shadow {
    background: linear-gradient(to right, #ff760040 0%, #260707eb 50%, #ff760040 100%);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.8s ease-in-out;
}

    .ego-card-shadow:hover {
        background-position: right center;
    }


