﻿<style >
.modal-content {
    background-color: transparent;
    border: none;
}
/* Personalizzazione per lo sfondo sfocato */
.blur-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Opacità sfondo */
    backdrop-filter: blur(5px); /* Effetto di sfocatura */
    z-index: 1000; /* Assicura che lo sfondo sia sopra tutto il resto */
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Personalizzazione per il popup */
.popup {
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
}


.card {
    overflow: hidden;
    border-radius: 10px;
    min-height: 500px;
    border: none; /* Rimuove completamente il bordo */
}



.card-body {
    padding: 2rem;
}

input[type = 'email'], input[type = 'password'] {
    border-radius: 100px;
    border: none;
    background: #E3F2FD;
}

input[type = 'button'] {
    border-radius: 100px;
}

</style >
