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

body {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

/* Centrare il contenitore del form */
.CommessContainer {
    background: #ffffffcc;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    width: 350px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}


/* Logo */
.head img {
    margin-bottom: 20px;
}

/* Label animato stile moderno */
.wave-group {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.label, .label1 {
    display: flex;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
}


/* Input */
.input, .input1 {
    width: 100%;
    padding: 10px 15px;
    border: none;
    outline: none;
    background: #f0f0f0;
    border-radius: 8px;
    box-shadow: inset 2px 2px 5px #d1d9e6, inset -3px -3px 7px #ffffff;
    transition: 0.3s;
    font-size: 16px;
}

.input:focus, .input1:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px #3a9ff1;
}

/* Checkbox show password */
.Eye {
    margin-top: 10px;
    cursor: pointer;
}

i {
    font-size: 13px;
    color: #444;
}

/* Pulsante login animato */
.animated-button {
    background: linear-gradient(145deg, #f19c5a, #f96d00);
    border: none;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated-button:hover {
    background: linear-gradient(145deg, #f19c5a, #f96d00);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.animated-button img {
    filter: brightness(0) invert(1);
}

/* Scrollbar nascosta */
::-webkit-scrollbar {
    display: none;
}

#LogIn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}
