/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
  }
  
  /* Container principal */
  .login-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
  }
  
  /* Caixa de login */
  .login-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Cabeçalho */
  .login-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .login-header h1 {
    font-size: 24px;
    color: #5a3804;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .login-header p {
    color: #666;
    font-size: 14px;
  }
  
  /* Formulário */
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .input-group {
    position: relative;
  }
  
  .input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
  }
  
  .input-group label i {
    margin-right: 8px;
    color: #5a3804;
  }
  
  .input-group input {
    width: 100%;
    padding: 14px 40px 14px 15px;
    border: 2px solid #e0e3e7;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .input-group input:focus {
    border-color: #5a3804;
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
  }
  
  .toggle-password {
    position: absolute;
    right: 15px;
    top: 38px;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
  }
  
  .toggle-password:hover {
    color: #5a3804;
  }
  
  /* Opções do formulário */
  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
  }
  
  .remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  
  .forgot-password {
    color: #5a3804;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .forgot-password:hover {
    text-decoration: underline;
  }
  
  /* Botão de login */
  .login-btn {
    background: #5a3804;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .login-btn:hover {
    background: #5a3804;
    transform: translateY(-2px);
  }
  
  .login-btn:active {
    transform: translateY(0);
  }
  
  /* Rodapé */
  .login-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #666;
  }
  
  .login-footer a {
    color: #5a3804;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .login-footer a:hover {
    text-decoration: underline;
  }
  
  .copyright {
    margin-top: 15px;
    font-size: 12px;
    color: #999;
  }
  
  /* Responsividade */
  @media (max-width: 600px) {
    .login-box {
      padding: 30px 20px;
    }
    
    .login-header h1 {
      font-size: 20px;
    }
    
    .input-group input {
      padding: 12px 40px 12px 12px;
    }
    
    .login-btn {
      padding: 12px;
    }
  }
  
  @media (max-width: 400px) {
    .form-options {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    
    .login-footer p {
      font-size: 12px;
    }
  }