* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Coda Caption", sans-serif;
}

body {
  background: url("/devhivespace/pages/assets/background.png") no-repeat center
    center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 440px;
  max-height: 600px;
  padding: 20px;
}

.forgot-password-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pass-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pass-icon img {
  width: 200px;
  height: 200px;
}

h1 {
  font-size: 24px;
  color: #1e1e1e;
  margin-top: 10px;
  margin-bottom: 12px;
  font-weight: 600;
}

.subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}

label {
  display: block;
  font-size: 14px;
  color: #1e1e1e;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #1e1e1e;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #4169e1;
  box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.send-btn {
  width: 100%;
  padding: 12px;
  background: #4169e1;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.send-btn:hover {
  background: #3154b3;
}

.back-to-login {
  margin-top: 16px;
}

.back-to-login a {
  color: #4169e1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-to-login a:hover {
  text-decoration: underline;
}
