/* body {
    background: #E8F5E9;
} */

.p {
    text-align: center;
    color: red;
    font-size: 16px;
}

#section {
    min-height: 100vh;
    min-width: none;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.section {
    display: flex;
    justify-content: center;
}

.form {
    padding: 70px;
    background: #E0F2F1;
    backdrop-filter: blur(15px);
    border: 2px solid #A5D6A7;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
}

#h2 {
    text-align: center;
    font-size: 26px;
    font-family: 'poppins';
    margin-top: -20px;
    color: #00695C;
}

.error {
    display: block;
    position: absolute;
    background-color: rgba(255, 0, 0, 0.726);
    padding: 10px;
    width: 100%;
    color: white;
    top: 0;
    left: -10px;
    font-size: 13px;
    margin-top: 0;
    text-align: center;
    animation: s 0.5s linear;
    font-family: 'Roboto', sans-serif;
}

.error_e {
    display: block;
    position: absolute;
    background-color: rgba(255, 0, 0, 0.726);
    padding: 10px;
    width: 100%;
    color: white;
    top: 0;
    left: -10px;
    font-size: 13px;
    margin-top: 0;
    text-align: center;
    animation: s 0.5s linear;
    font-family: 'Roboto', sans-serif;
}

@keyframes s {
    from {
        transform: translateY(-100px);
    }

    to {
        transform: translateY(0px);
    }
}

.input-email {
    position: relative;
    margin-bottom: 0;
    font-size: 16px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgba(0, 0, 0, 0.633);
    overflow: hidden;
    border-radius: 5px;
}

.input-password {
    position: relative;
    margin-bottom: 0;
    font-size: 16px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgba(0, 0, 0, 0.633);
    overflow: hidden;
    border-radius: 5px;
}

input {
    padding: 9px;
    padding-right: 45px;
    width: 380px;
    margin-bottom: 10px;
    background: #F5F5F5;
    border: 2px solid #A5D6A7;
    border-radius: 5px;
    outline: none;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
    color: #424242;
    overflow: hidden;
}

input::placeholder {
    color: rgba(0, 0, 0, 0.766);
}

#envelope {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    font-size: 14px;
    cursor: pointer;
    color: white;
    background: #4CAF50;
    padding: 12.8px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

#lock {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    font-size: 14px;
    cursor: pointer;
    color: white;
    background: #4CAF50;
    padding: 12.8px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

#lock-open {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    font-size: 14px;
    cursor: pointer;
    color: white;
    background: #4CAF50;
    padding: 12.8px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

#button {
    padding: 8px;
    width: 100%;
    border: none;
    background-color: #4CAF50;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    color: white;
}

#button:hover {
    background-color: #4CAF50;
}