* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f7f7f8;
  height: 100vh;
}

header {
  background: #6a0f0f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

header h1 {
  font-size: 18px;
  font-weight: 500;
}

.back-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.profile-icon {
  font-size: 20px;
}

.form-container {
  width: 100%;
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  border-radius: 5px;
  padding: 30px 40px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.input-group label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  transition: 0.3s;
  pointer-events: none;
  background: #fff;
  padding: 0 4px;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  font-size: 12px;
  color: #0052cc;
}

.and-text,
.or-text {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.error-box {
  background: #fdeaea;
  border: 1px solid #f5c2c2;
  color: #b30000;
  padding: 10px;
  font-size: 14px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.note-box {
  background: #e6f1fc;
  border-left: 4px solid #007bff;
  color: #000;
  padding: 15px 20px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
}

.note-box strong {
  display: block;
  margin-bottom: 5px;
}

.note-box ul {
  list-style-type: disc;
  margin-left: 20px;
}

.reset-btn {
  width: 100%;
  background: #2c4dbc;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 12px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 25px;
  transition: 0.3s;
}

.reset-btn:hover {
  background: #1e3fa0;
}
