body {
    margin: 0;
    background-color: #ffffff;
}

.wave {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: -1;
}

.subTitle {
    width: 500px;
    font-weight: 700;
    font-size: 19px;
    color: #A5A5B6;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    width: 100vw;
    justify-items: center;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
}

.img {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
}

.img img {
    width: 100%;
    max-width: 740px;
    height: auto;
}

.logo-login {
    width: 150px;
    margin-bottom: 20px;
}

.login-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 440px;
}

.login-content h2 {
    font-family: 'Varela', sans-serif;
    color: #333;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.input-div {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
    width: 100%;
}

.btSubmit {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    border: none;
    background-image: linear-gradient(to right, #2E2E6E, #1e1e6e, #3535e2);
    background-size: 200%;
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-position 0.5s;
}

.btSubmit:hover {
    background-position: right;
}

input {
    background: transparent;
    outline: none;
    width: 100%;
    border: 1px solid #2E2E6E;
    padding: 15px;
    font-size: 14px;
    color: #2E2E6E;
    border-radius: 15px;
}

input::placeholder {
    color: #afafaf;
}

/* Responsividade */
@media only screen and (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .img {
        display: none;
    }

    .wave {
        display: none;
    }

    .login-content {
        align-items: center;
        text-align: center;
    }

    .login-content h2 {
        font-size: 28px;
    }

    .input-div,
    .btSubmit {
        width: 100%;
    }
}

.lbEmailLogin{
    font-size: 18px;
}
.alert {
    margin: 15px auto;
    padding: 12px 20px;
    border-radius: 6px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}
.alert-success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}
.alert-error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}