@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f5f6fa;
}


.container {
    display: flex;
    width: 950px;
    height: 540px;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.imagem {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.imagem img {
    width: 170px;
    height: auto;
}

.left-panel {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #2e7158, #2e7158);
    display: flex;
    align-items: center;
    padding: 60px;
    color: white;
}


.left-panel h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 12px;
}

.left-panel p {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}


.right-panel {
    width: 50%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 40px 0;
}


.right-panel h1 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}


.input-box {
    position: relative;
    height: 38px;
    width: 300px;
    margin: 12px auto;
}

.input-box input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    outline: none;
    font-size: 14px;
    color: black;
    padding: 14px 45px 12px;
}

.input-box input::placeholder {
    color: #444;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.password-box input {
    padding-left: 45px;
    padding-right: 50px;
}

.password-box .input-icon {
    left: 18px;
    right: auto;
    color: #444;
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.toggle-password i {
    position: static;
    transform: none;
    font-size: 20px;
}


.login {
    display: block;
    width: 220px;
    height: 52px;     
    background-color: white;
    border: none;
    border-radius: 28px;
    cursor: pointer;
    font-size: 15px;
    color: black;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    margin: 12px auto 0;
    text-align: center;
}

.login:hover {
    background-color: transparent;
    border: 2px solid rgb(136, 129, 129);
    color: black;
    transition: 0.3s;
}


.esquecesenha {
    width: 300px;      
    margin: 6px auto;
    text-align: right;
    padding-right: 0; 
}

.esquecesenha .forgot-link {
    display: inline-block;
    margin-right: -12px; 
    color: #0066ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.esquecesenha .forgot-link:hover {
    text-decoration: underline;
}



.divider {
    display: flex;
    align-items: center;
    margin: 20px 40px;
    color: #000;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
}

.divider span {
    padding: 0 10px;
    font-weight: 500;
    font-size: 14px;
}


.g_id_signin {
    display: flex;
    justify-content: center;
    margin: 10px 0 15px;
}

div[role="button"] {
    width: 100% !important;
}


.register-link {
    text-align: center;
    margin-top: auto;
    font-size: 13px;
    color: #000;
}


/* =========================

   TABLET (até 1023px)

========================= */

@media (max-width: 1023px) {

    .container {

        width: 90%;

        height: auto;

        flex-direction: row;

    }
 
    .left-panel {

        width: 45%;

        padding: 40px;

    }
 
    .left-panel h2 {

        font-size: 28px;

    }
 
    .right-panel {

        width: 55%;

        padding: 30px 0;

    }
 
    .input-box {

        width: 260px;

    }
 
    .login {

        width: 200px;

    }

}
 
/* =========================

   MOBILE (até 767px)

========================= */

@media (max-width: 767px) {

    body {

        padding: 20px;

    }
 
    .container {

        flex-direction: column;

        width: 100%;

        height: auto;

        border-radius: 14px;

    }
 
    .left-panel {

        width: 100%;

        height: auto;

        padding: 30px 20px;

        text-align: center;

        justify-content: center;

    }
 
    .left-panel h2 {

        font-size: 26px;

    }
 
    .right-panel {

        width: 100%;

        padding: 30px 0;

    }
 
    .imagem img {

        width: 140px;

    }
 
    .input-box {

        width: 85%;

    }
 
    .login {

        width: 85%;

        height: 48px;

    }
 
    .esquecesenha {

        width: 85%;

        text-align: right;

    }
 
    .divider {

        margin: 20px;

    }
 
    .register-link {

        margin-top: 20px;

        padding-bottom: 10px;

    }

}


.left-panel {
    display: flex;
}


@media (max-width: 768px) {
    .left-panel {
        display: none;
    }
}

/* =========================

   TABLET (até 1023px)

========================= */

@media (max-width: 1023px) {

    .container {

        width: 90%;

        height: auto;

        flex-direction: row;

    }
 
    .left-panel {

        width: 45%;

        padding: 40px;

    }
 
    .left-panel h2 {

        font-size: 28px;

    }
 
    .right-panel {

        width: 55%;

        padding: 30px 0;

    }
 
    .input-box {

        width: 260px;

    }
 
    .login {

        width: 200px;

    }

}
 
/* =========================

   MOBILE (até 767px)

========================= */

@media (max-width: 767px) {

    body {

        padding: 20px;

    }
 
    .container {

        flex-direction: column;

        width: 100%;

        height: auto;

        border-radius: 14px;

    }
 
    .left-panel {

        width: 100%;

        height: auto;

        padding: 30px 20px;

        text-align: center;

        justify-content: center;

    }
 
    .left-panel h2 {

        font-size: 26px;

    }
 
    .right-panel {

        width: 100%;

        padding: 30px 0;

    }
 
    .imagem img {

        width: 140px;

    }
 
    .input-box {

        width: 85%;

    }
 
    .login {

        width: 85%;

        height: 48px;

    }
 
    .esquecesenha {

        width: 85%;

        text-align: right;

    }
 
    .divider {

        margin: 20px;

    }
 
    .register-link {

        margin-top: 20px;

        padding-bottom: 10px;

    }

}


.left-panel {
    display: flex;
}


@media (max-width: 768px) {
    .left-panel {
        display: none;
    }
}

 
 
