/*-- -------------------------- -->
<---         Login Portals       -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media (min-width: 0rem) {
  #portals {
    padding: var(--sectionPadding);
    padding-top: 3rem;
    background-color: #fafbfc;
    position: relative;
  }
  #portals .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #portals .cs-container .cs-topper {
    margin-bottom: 1rem;
  }
  #portals .cs-content {
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    margin-bottom: 3rem;
  }
  #portals .cs-card-group {
    width: 100%;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
  }
  #portals .cs-item {
    min-width: 350px;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 0.75rem;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }
  #portals .cs-item:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
  }
  #portals .cs-item:hover .cs-arrow {
    transform: translateX(0.125rem);
  }
  #portals .cs-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: #f0f4ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
  }
  #portals .cs-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    transition: color 0.2s ease;
  }
  #portals .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    color: var(--headerColor);
  }
  #portals .cs-link {
    direction: ltr;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    margin-top: auto;
  }
  #portals .cs-link.cs-disabled {
    border-color: #ccc;
    color: #999;
    cursor: not-allowed;
  }
  #portals .cs-link.cs-disabled:hover {
    background-color: transparent;
    color: #999;
  }
  #portals .cs-link.cs-disabled .cs-arrow {
    color: #999;
  }
  #portals .cs-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease;
  }
}
/* Tablet - 768px */
@media (min-width: 48rem) {
  #portals .cs-card-group {
    gap: 2rem;
  }
  #portals .cs-item {
    padding: 1.75rem 1.5rem;
  }
  #portals .cs-notice-content {
    gap: 1.25rem;
  }
}
/* Desktop - 1024px */
@media (min-width: 64rem) {
  #portals .cs-content {
    margin-bottom: 4rem;
  }
  #portals .cs-card-group {
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  #portals .cs-item {
    padding: 2rem 1.75rem;
    min-height: 12.5rem;
  }
  #portals .cs-icon-wrapper {
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1.25rem;
  }
  #portals .cs-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  #portals .cs-h3 {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}
/* Dark Mode */
@media (min-width: 0rem) {
  body.dark-mode #portals {
    background-color: var(--dark);
  }
  body.dark-mode #portals .cs-item {
    background-color: var(--medium);
    border-color: rgba(255, 255, 255, 0.1);
  }
  body.dark-mode #portals .cs-item:hover {
    border-color: var(--primaryLight);
  }
  body.dark-mode #portals .cs-icon-wrapper {
    background-color: rgba(14, 14, 31, 0.4);
  }
  body.dark-mode #portals .cs-arrow, body.dark-mode #portals .cs-icon, body.dark-mode #portals .cs-link {
    color: var(--primaryLight);
  }
  body.dark-mode #portals .cs-h3 {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #portals .cs-notice {
    background-color: rgba(255, 243, 205, 0.1);
    border-color: rgba(255, 234, 167, 0.2);
  }
  body.dark-mode #portals .cs-notice-icon {
    color: #ffd93d;
  }
  body.dark-mode #portals .cs-notice-text h4 {
    color: #ffd93d;
  }
  body.dark-mode #portals .cs-notice-text p {
    color: rgba(255, 217, 61, 0.8);
  }
}

/*# sourceMappingURL=logins.css.map */
