@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #448d66;
    margin: 0;
}

.container {
    position: absolute;
    max-width: 430px;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
}

.container .form {
    padding: 30px;
}

.container .form .title {
    position: relative;
    font-size: 27px;
    font-weight: 600;
}

.form .title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;
    background-color: #448d66;
    border-radius: 25px;
}

.form .input-field {
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 30px;
}

.input-field input {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0 35px;
    border: none;
    outline: none;
    font-size: 16px;
    border-bottom: 2px solid #000;
    border-top: 2px solid transparent;
    transition: all 0.2s ease;
}

.input-field i {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #999;
    font-size: 23px;
    transition: all 0.2s ease;
}


.input-field i.icon {
    left: 0;
    color: black;
}

.input-field i.showHidePw {
    left: 90%;
    color: black;
}

.form .checkbox-text {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.checkbox-text .checkbox-content {
    display: flex;
    align-items: center;
}

.checkbox-content input {
    margin: 0 8px -2px 4px;
    color: black;
}

.form .text {
    color: #333;
    font-size: 14px;
}

.form a.text {
    text-decoration: none;
    color: #448d66;
}

.form a:hover {
    text-decoration: underline;
    color: #448d66;
}

.form .button {
    margin-top: 35px;
}

.form .btnGreen input {
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 6px;
    background-color: #448d66;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btnGreen input:hover {
    background-color: #ed3137;
}

.form .btnRed input {
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 6px;
    background-color: #ed3137;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btnRed input:hover {
    background-color: #448d66;
}

.form .login-signup {
    margin-top: 30px;
    text-align: center;
}

.msgAlert-errorr {
    display: none; /* Inicialmente escondida */
    color: red;
    background: black;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 80%;
}
.show2 {
    display: block;
}
