#edlx__login, #edlx__registration{
    border: 3px solid var(--special-color);
    border-radius: 17px;
    max-width: 50vw;
}
@media screen and (max-aspect-ratio: 16/9) {
    /* Applies to wider, short screens (e.g., laptops or phones in landscape) */
    /* #edlx__login, #edlx__registration{
        border: 3px solid var(--special-color);
        border-radius: 17px;
        max-width: 50vw;
    } */
}
@media screen and (min-aspect-ratio: 9/16) {
    /* Applies to tall screens (e.g., mobile phones in portrait) */
    /* #edlx__login, #edlx__registration{
        border: 3px solid var(--special-color);
        border-radius: 17px;
        max-width: 100vw;
    } */ 
}
@media screen and (max-width:1000px) {
    #edlx__login, #edlx__registration{
        border: 3px solid var(--special-color);
        border-radius: 17px;
        max-width: 100vw;
    }   
}
a{
    color: var(--special-color);
    text-decoration: none;
}
#capped_programs, #running_programs, #cancelled_programs {
  display: grid;
  row-gap: 50px;
  column-gap: 50px;
  margin: 50px 0;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.course_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 5px 20px;
  margin-bottom: 12px;
  justify-content: center;
}
.program {
  background-color: var(--bg-color);
  border: 3px solid var(--special-color);
  border-radius: 17px;
  padding: 20px;
  /* font-size: 30px; */
  text-align: center;
}
/* OR */
/* #or::before, #or::after {
  position: absolute;
  width: 130px;
  height: 1px;
  top: 24px;
  background-color: #aaa;
  content: '';
}
#or::after {
  right: 0;
}
#or::before {
  left: 0;
} */