/* gen_full_competency.css */

.text_80_flex{
    {% comment %} display: flex; {% endcomment %}
    max-width: min(660px,95%);
}

.form-container {
    max-width: min(760px,95%);
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap onto the next line as needed */
    gap: 10px; /* Adds space between form groups */
}

.form-group {
    flex: 1 1 200px; /* Each form group will grow to take available space, but not smaller than 200px */
    min-width: 270px; /* Prevents the form group from being too small */
}

.label_on_top
{   margin-top: 12px;
    display: block;
}

/* CSS */
  
.button-glow {
  animation: glow 1s infinite alternate;
}

.button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@keyframes glow {
  from {
      box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #e60073, 0 0 20px #e60073, 0 0 25px #e60073, 0 0 30px #e60073, 0 0 35px #e60073;
  }
  to {
      box-shadow: 0 0 10px #fff, 0 0 20px #ff4da6, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6;
  }
}
