

/* Add media query for tablets onwards */
@media (min-width: 768px) {
 .signup .login__image {
    flex-grow: unset !important;
    margin-top: 35vh;
}

.login__title-big {
    font-size: 2.125rem;
}
}

.dashboard__aside .aside__body {
    padding: 1rem 2rem;
}

.header-dashboard__user-img {
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
}

.filter-dashboard__button {
    font-size: 1rem;
}

.filter-dashboard__form-input {
    font-size: 1rem;
}

.table-dashboard__row {
    font-size: .925rem;
}

.aside__link {
    color: #000;
    font-size: 1.025rem;
}

.aside__link-icon.inactive path {
    fill: lightgray;

}

.contact-message__box {
    margin-bottom: 1.5rem;
}

.form__button.contact__submit {
    margin-top: 1.5rem;
}

.error-messages {
    color: red;
    background-color: #fffaf5;
    padding: 20px;
}

.checkbox__input:checked + .checkbox__label:before {
    background: #ff7a00;
    text-align: center;
    content: "✔";
    color: #fff;
  }

  .password-container {
    display: flex;
    align-items: center;
    background-color: #fdf5ed;
    border-radius: 0.75rem;
}

.password-container input[type="checkbox"] {
    margin-left: 10px; /* Add some space between the input and the checkbox */
}

.password-container label {
    margin-left: 5px; /* Adjust the space between the checkbox and label */
    font-size: 0.9em;
    cursor: pointer;
    padding-right: 15px;
}

.form-guardian .form__line:last-child {
    grid-column: span 1;

}

.form-school .form__items--mb .form__line:last-child {
    grid-column: inherit;
}

.period-container {
    background-color: #fdf5ed;
    border-radius: 0.75rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
}

.period-container  span {
    padding: 0 2rem;
}

.period-container input {
    padding: 0.5rem 1rem;
    border: 1px solid orange;
    border-radius: 0.75rem;
}


.application__screen {
    display: none;
  }

  .application__screen.active {
    display: block;
  }

  .application__step {
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }

  .application__step--active {
    opacity: 1;
  }

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