/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* BODY */
body {
  background: linear-gradient(135deg, #e6f0f0, #f8f8ff);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* CONTAINER WRAPPER */
.container {
  width: 100%;
  max-width: 420px;
}

/* HEADER */
.header {
  background: linear-gradient(135deg, #5F9EA0, #2c7a7b);
  color: white;
  text-align: center;
  padding: 18px;
  border-radius: 12px 12px 0 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* FORM CARD */
form {
  background: white;
  padding: 25px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* INPUT GROUP */
.input-group {
  margin-bottom: 15px;
  position: relative;
}

.input-group label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

/* INPUT FIELD */
.input-group input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: #2c7a7b;
  box-shadow: 0 0 5px rgba(44,122,123,0.3);
  outline: none;
}

/* PASSWORD ICON */
.input-group span {
  position: absolute;
  right: 10px;
  top: 35px;
  cursor: pointer;
  color: #666;
}

/* SMALL TEXT */
small {
  font-size: 12px;
  color: #777;
}

/* BUTTON */
.btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #4facfe, #00c6ff);
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #38f9d7, #43e97b);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* LINKS */
p {
  margin-top: 10px;
  font-size: 14px;
}

a {
  color: #2c7a7b;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* ERROR */
.error {
  padding: 10px;
  background: #fdecea;
  color: #b71c1c;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 14px;
}

/* SUCCESS */
.success {
  padding: 10px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 500px) {
  form {
    padding: 20px;
  }
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.form-card {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  overflow: hidden;
}
}
.info-text {
  font-size: 13px;
  color: #ff9800;
  margin-top: 5px;
  text-align: center;
}