
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        height: 100%;
        font-family: 'Segoe UI', sans-serif;
        
    }
    body {
        background-color: #2b3a59; /* <- essa cor será vista nas laterais */
        margin: 0;
        padding: 0;
        height: 100vh;
        overflow: hidden; /* impede scroll inesperado */
        

    }

    .forgot-wrapper {
        display: flex;
        height: calc(100vh - 50px);
        width: 99%;
    }

    .forgot-left {
        flex: 1;
    }

    .forgot-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .forgot-right {
        width: 400px;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 40px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
        
    }

    .forgot-right h2 {
        text-align: center;
        margin-bottom: 24px;
        color: #333;
    }

    label {
        display: block;
        margin-bottom: 6px;
        color: #555;
        font-weight: bold;
    }

    input {
        width: 100%;
        padding: 12px;
        margin-bottom: 16px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 14px;
    }

    input[type="submit"] {
        background: #0066cc;
        color: white;
        font-weight: bold;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    input[type="submit"]:hover {
        background: #004c99;
    }

    .error-message {
        color: #c00;
        background-color: #ffe5e5;
        padding: 2px;
        margin-bottom: 20px;
        border-radius: 0px;
        text-align: center;
        border: 0px solid #f00;
        display: block; /* padrão: escondido */
        opacity: 0;
        animation: fadeIn 0.5s forwards;
    }
.forgot-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* Preenche o container, cortando onde necessário */
  object-position: left;     /* Alinha a imagem à esquerda */
  display: block;
}
    
    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }

    .success-message {
        background-color: #e6ffe6;
        border: 1px solid #00aa00;
        color: #006600;
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 8px;
        text-align: center;
        font-weight: bold;
    }

    .options-links {
        text-align: center;
        margin-top: 16px;
    }

    .options-links a {
        color: #0066cc;
        text-decoration: none;
        margin: 0 10px;
    }

    .options-links a:hover {
        text-decoration: underline;
    }
    .login-logo {
        width: 45px;
        height: 45px;
        display: block;
        margin: 0 auto 20px;
    }
    .input-icon {
        position: relative;
        margin-bottom: 16px;
    }
    
    .input-icon i {
        position: absolute;
        top: 40%;
        left: 12px;
        transform: translateY(-50%);
        color: #999;
        font-size: 14px;
    }
    
    .input-icon input {
        width: 100%;
        padding: 12px 12px 12px 38px; /* espaço para o ícone */
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 14px;
        transition: border-color 0.3s ease;
    }
    
    .input-icon input:focus {
        border-color: #0066cc;
        box-shadow: 0 0 4px rgba(0, 102, 204, 0.2);
        outline: none;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    
        
    .login-footer {
        margin-top: auto;
        font-size: 12px;
        text-align: center;
        color: #888;
        padding-top: 20px;
    }
    .divider-ou {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 24px 0 16px;
    }
    
    .divider-ou span {
        font-weight: bold;
        color: #666;
        font-size: 14px;
    }


/* Mensagens */
.forgot-message {
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

.forgot-success {
  background-color: #d1fae5;
  color: #065f46;
}

.forgot-error {
  background-color: #fee2e2;
  color: #991b1b;
}

/* Link para login */
.forgot-login-link {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

.forgot-login-link a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.forgot-login-link a:hover {
  text-decoration: underline;
}
.g-recaptcha {
  transform: scale(1); /* aumenta 25% */
  transform-origin: 0 0;
}

    @media (max-width: 768px) {
        .forgot-wrapper {
            flex-direction: column;
        }

        .forgot-left {
            display: none;
        }

        .forgot-right {
            width: 100%;
            padding: 40px 20px;
        }
    }
