.notification-form {
  width: 100%;
  max-width: 900px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  margin: 0 auto;
  margin-top: 10px;
}

.form-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.form-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

.user-badge {
  background: linear-gradient(135deg, #00b09b, #96c93d);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.form-description {
  text-align: center;
  color: #666;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.5;
}

.form-label {
  font-weight: 500;
  color: #444;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.required {
  color: #e74c3c;
  margin-left: 3px;
}

.form-controls {
  border-radius: 8px;
/*  border: 1px solid #ddd;*/
  padding: 12px 15px;
height:50px;
  font-size: 14px;
  transition: all 0.2s;
}

.form-controls:focus {
  border-color: #27ae60 !important;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.optional-text {
  color: #888;
  font-size: 13px;
  font-weight: normal;
  margin-left: 5px;
}

.form-check {
  margin-top: 20px;
}

.form-check-input:checked {
  background-color: #27ae60;
  border-color: #27ae60;
}

.security-section {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
}

.security-icon {
  width: 36px;
  height: 36px;
  background-color: #e8f5e9;
  color: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.security-text {
  font-size: 13px;
  color: #666;
}

.security-title {
  font-weight: 500;
  color: #333;
  margin-bottom: 3px;
}

.submit-btn {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border: none;
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
  width: 100%;
  margin-top: 10px;
  transition: all 0.2s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.mb-4 {
  margin-bottom: 20px;
}
