body {
    font-family: "Inter", sans-serif;
    background: #f7f7f7;
    color: #002064;
}

.reset-box {
    width: 100%;
    max-width: 400px;
    margin: 80px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.reset-box input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.reset-box h2 {
    margin-bottom: 20px;
}

.reset-box p {
    margin-bottom: 20px;
    font-size: 14px;
}

.reset-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.reset-box button {
    width: 100%;
    padding: 12px;
    background: #002064;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.reset-box button:hover {
    background: #001840;
}

.reset-box a {
    display: block;
    margin-top: 15px;
    color: #002064;
    text-decoration: none;
    font-size: 14px;
}

.reset-box a:hover {
    text-decoration: underline;
}

.success {
  color: green;
  margin-top: 10px;
}

.error {
  color: red;
  margin-top: 10px;
}

.password-field {
  position: relative;
  width: 100%;
}

.password-field input {
  width: 100%;
  padding-right: 40px; /* espaço para o ícone */
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 30%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
}
