@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #f5f8fa;
}

.container-login {
    width: 100%;
    height: 100vh;
    display: flex;
}

/* LADO ESQUERDO */
.left {
    width: 50%;
    padding: 70px 80px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    font-size: 30px;
    color: #71c3f1ff;
    font-weight: 700;
}

.subtitle {
    margin-top: 10px;
    margin-bottom: 40px;
    color: #666;
}

form label {
    font-size: 15px;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d3d3d3;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 15px;
}

button {
    width: 150px;
    padding: 12px;
    background: #71c3f1ff;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background: #58a8d6;
}

.forgot {
    margin-top: 15px;
    display: inline-block;
    font-size: 14px;
    color: #71c3f1ff;
    text-decoration: none;
}
/* Estilos para o campo de senha com ícone */
.password-container {
    position: relative; /* Define o contexto de posicionamento */
    margin-bottom: 20px; /* Mantém o espaçamento original do input */
}

/* O input deve ocupar o container inteiro */
.password-container input {
    padding-right: 40px; /* Garante espaço para o ícone */
    margin-bottom: 0; /* Remove a margem extra que estava no input original */
}

/* Estilo do Ícone (o olhinho) */
#togglePassword {
    position: absolute;
    top: 50%; /* Centraliza verticalmente */
    right: 10px; /* 10px da direita */
    transform: translateY(-50%);
    cursor: pointer;
    color: #666; /* Cor do ícone */
    font-size: 18px;
}

/* LADO DIREITO */
.right {
    width: 50%;
    background: linear-gradient(135deg, #071b2c, #144b74, #71c3f1ff);
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.right h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.right p {
    font-size: 16px;
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 900px) {
    .container-login {
        flex-direction: column;
    }

    .left, .right {
        width: 100%;
        height: auto;
    }
.photo-area {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff00; /* opcional */
}

.photo-area img {
    width: 60%;      /* 🔹 diminui a imagem */
    height: auto;    /* mantém proporção */
    object-fit: contain;
}
}
