* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #f6f9fc;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .redefinir-container {
    padding: 40px;
    width: 100%;
    max-width: 500px;
    background: #f6f9fc;
  }
  
  .top-bar {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    
  
  .voltar {
    font-size: 18px;
    background: #e6e6e6;
    padding: 6px 10px;
    border-radius: 50%;
    color: #555;
    text-decoration: none;
  }
  
  .top-bar h2 {
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 400;
  }
  
  p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }
  
  input[type="email"] {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    background: white;
  }
  
  .btn-box {
    display: flex;
    justify-content: flex-start;
  }
  
  button {
    width: 270px;
    padding: 9px;
    border: none;
    border-radius: 25px;
    background-color: #125786;
    color: white;
    font-size: 16px;
    cursor: pointer;
  }
  