/* Alert-Styling in Blautönen mit Häckchen für die Mailbestätigung*/

  .custom-alert {
    padding: 16px;
    margin: 20px 0;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    animation: fadeIn 0.4s ease-out;
    border-left: 4px solid;
  }
  
  .success {
    background-color: #f0f8ff;  /* Hellblauer Hintergrund */
    border-color: #4682b4;      /* Steel Blue Rand */
    color: #2c5282;            /* Dunkelblauer Text */
  }
  
  .alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .alert-icon {
    width: 20px;
    height: 20px;
    color: #2b6cb0;           /* Blaues Häkchen */
    flex-shrink: 0;
  }
  
  .close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #718096;           /* Graublauer Close-Button */
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .close-btn:hover {
    color: #4a5568;           /* Dunkler beim Hover */
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
/* Formular-Styles 
.form-feedback { margin: 20px 0; }
.alert {
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 20px;
}
.alert-success {
	background-color: #d4edda;
	color: #155724;
}
.alert-error {
	background-color: #f8d7da;
	color: #721c24;
}
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; }
.form-control {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.btn-submit {
	background: #2a6496;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}
.btn-submit:hover { background: #1d4b7a; }
.g-recaptcha { margin: 15px 0; }*/
