* {
  margin: 0;
  padding: 0;
  outline: 0;
}

*,
body,
html {
  box-sizing: border-box;
}

body,
html {
  font-family: Roboto, sans-serif !important;
}

body {
  background: linear-gradient(135deg, #0e4545 0%, #4db7a0 100%);

  min-height: 100vh;
}

a,
button {
  cursor: pointer;
}

button[type="submit"] {
  background: linear-gradient(45deg, #0e4545, #4db7a0);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 12px 20px;
  box-shadow: 0 4px 15px rgba(14, 69, 69, 0.3);
}

button[type="submit"]:hover {
  background: linear-gradient(45deg, #0e4545, #4db7a0);
  filter: brightness(1.15);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(14, 69, 69, 0.4);
}

button[type="submit"]:active {
  transform: scale(0.96);
}

h1,
h2,
h5,
h6 {
  color: #2c3e50 !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
  font-weight: 700;
}

h2 {
  margin-bottom: 0.5rem;
  text-align: center;
}

main {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.div_form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  max-width: 768px;
  width: 90%;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form {
  padding: 2rem;
}

.form-description {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  text-align: center;
}

.required-asterisk {
  color: #dc3545;
  margin-left: 4px;
}

.form-control {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #0e4545;
  box-shadow: 0 0 0 0.2rem rgba(14, 69, 69,0.25);
}

.password-input-container {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.password-toggle:hover {
  color: #0e4545;
}

.forgot-password-link {
  color: #0e4545;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-password-link:hover {
  color: #4db7a0;
  text-decoration: underline;
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  display: none;
}

.form-feedback.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

.form-feedback.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
  display: block;
}

.form-text {
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .div_form {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .form {
    padding: 1rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}
