@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    width: 100%;
    height: 100vh;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ============ CSS LOGIN ============ */
.content__login {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e9ecef;
}

/* ---------- CONTENT LEFT ---------- */
.content__left {
    background: white;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.3rem;
    text-align: center;
    box-shadow: 14px 0 5px -5px #ccc;
}

.content__left img {
    width: 130px;
}

.content__left span {
    font-size: 1.8em;
    color: #868686;
}

/* ---------- CONTENT LEFT ---------- */
.content__right {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.3rem;
}

.content__right img {
    width: 360px;
    height: 141px;
    /* Ajustar na tela */
    object-fit: contain;
}

.content__right-card {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    position: relative;
    min-width: 0;
    word-wrap: break-word;
    padding: 30px 10px;
    gap: 10px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.content__right-card h3 {
    font-size: 1.3em;
    color: #333;
}

.content__right-card span {
    color: #868686;
    font-size: 0.9rem;
}

.content__right-form {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 1.3rem;
}

.form-input {
    width: 300px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

.form-input:focus {
    outline: none;
}

.form__group input:focus-within + i {
    color: rgb(61, 146, 249);
}

.form__group {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding-right: 5px;
    color: #868686;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.content__right-form-recuperar-senha {
    text-align: right;
    color: #868686;
    text-decoration: underline;
    font-size: 0.8rem;
}

.content__right-form-submit {
    width: max-content;
    background: #1c396f;
    padding: 0.8rem 3rem;
    border-radius: 5px;
    color: #fff;
    align-self: center;
    cursor: pointer;
    border: none;
}

.content__right-form-submit:hover {
    opacity: 0.9;
}

/*---------- MEDIA QUERIES LOGIN----------*/
@media (max-width: 820px) {
    .content__login {
        flex-direction: column;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
    }
    .content__left {
        width: 100%;
        height: 35%;
        box-shadow: none;
    }

    .content__right-card {
        width: 350px;
    }
}
