:root {
  /* ===================================
     SMACSS BASE - Design System Tokens  
     =================================== */

  /* Primary Color Palette */
  --primary-color: #2C3494;
  --primary-color-hover: #9C9CD4;
  --secondary-color: #2C4CBC;
  --accent-color: #585B9C;

  /* Text Colors */
  --text-color-primary: #414252;
  --text-color-heading: #2c2d3f;
  --text-color-heading-hover: #6b6c78;
  --text-color-light: #e0e0e0;
  --text-color-contrast: #ffffff;

  /* Background Colors */
  --background-color-body: #f8f8f8;
  --background-color-section-primary: #9b9b9b;
  --background-color-section-secondary: #2C348C;
  --background-color-footer: #1a1a1a;
  --background-color-team: #f3f3f3;
  --background-color-button-footer: #2C348C;
  --background-color-footer-input: #262626;

  /* Typography System */
  --font-family-primary: "Poppins", sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  /* Spacing Scale (rem-based for accessibility) */
  --spacing-xs: 0.5rem;
  /* 8px */
  --spacing-sm: 0.625rem;
  /* 10px */
  --spacing-md: 0.9375rem;
  /* 15px */
  --spacing-lg: 1.25rem;
  /* 20px */
  --spacing-xl: 1.875rem;
  /* 30px */

  /* Border Radius Scale */
  --border-radius-sm: 0.5rem;
  /* 8px */
  --border-radius-md: 0.625rem;
  /* 10px */
  --border-radius-lg: 1.875rem;
  /* 30px */
  --border-radius-pill: 3.125rem;
  /* 50px */

  /* Additional Colors */
  --border-color-light: #888888;
  --shadow-color-primary: rgba(26, 118, 209, 0.3);
  --shadow-color-primary-light: rgba(26, 118, 209, 0.25);

  /* Animation Duration */
  --animation-duration-fast: 0.3s;
  --animation-duration-normal: 0.6s;

  /* Responsive Breakpoints (still px for media queries) */
  --breakpoint-xs: 384px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1366px;
}

/* ===================================
   BASE STYLES
   =================================== */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: var(--background-color-body);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  color: var(--text-color-heading);
}

p,
a {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  color: var(--text-color-primary);
}

/* ===================================
   SMACSS LAYOUT - STRUCTURAL ELEMENTS
   =================================== */
/* Layout: Header Components */
.header-logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  color: var(--accent-color) !important;
  font-size: 1.5625rem;
  text-decoration: none !important;
}

.header-logo img {
  height: 3.6rem;
  margin-right: var(--spacing-xs);
}

/* ===================================
   HEADER COMPONENTS
   =================================== */
.removeElement {
  display: flex;
}

.background-header-section-one {
  padding: var(--spacing-md);
}

.background-header-section-one p {
  margin-bottom: 0;
}

.background-header-section-one i {
  margin-right: var(--spacing-sm);
  padding: var(--spacing-xs) 0.75rem;
  border-radius: var(--border-radius-md);
  border: solid 1px rgb(179, 179, 179);
  color: var(--secondary-color);
}

.background-header-section-one h1 {
  color: var(--accent-color) !important;
  font-size: 1.5625rem;
}

/* Navigation */
.navbar {
  background-color: var(--primary-color);
}

.nav-link {
  color: white !important;
}

.nav-link::after {
  content: "";
  width: 0px;
  height: 2px;
  display: block;
  background: white;
  transition: 300ms;
}

.nav-link:hover::after {
  width: 100% !important;
}

@media only screen and (max-width: 992px) {
  .navbar-collapse {
    text-align: center !important;
  }

  .nav-link:hover {
    color: var(--text-color-light) !important;
  }

  .nav-link:hover::after {
    width: 0% !important;
  }
}

.fa-bars,
.navbar-toggler {
  color: var(--text-color-light) !important;
  border-color: var(--text-color-light) !important;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  min-height: 37.5rem;
  width: 100%;
}

.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../img/banner01.jpg");
  min-height: 37.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
  position: relative;
}

.hero-text {
  width: 100%;
  max-width: 28rem;
  margin-left: 5%;
  color: white;
}

/* Responsive adjustments */
@media only screen and (max-width: 1366px) {
  .hero-text {
    margin-left: 10%;
  }
}

@media only screen and (max-width: 992px) {
  .hero-image {
    justify-content: center;
    padding: 1.5rem;
  }

  .hero-text {
    margin-left: 0;
    max-width: 26rem;
  }
}

@media only screen and (max-width: 576px) {
  .hero-image {
    min-height: 32rem;
    padding: 1rem;
  }

  .hero-text {
    max-width: 100%;
  }
}

@media only screen and (max-width: 420px) {
  .hero-image {
    min-height: 28rem;
  }
}

/* ===================================
   MAIN CARDS SECTION
   =================================== */
.section-main-card .cards {
  border-radius: var(--border-radius-md) !important;
  max-width: 21.875rem;
  box-sizing: border-box;
  align-items: center;
}

.section-main-card i {
  font-size: 3.75rem;
  padding-bottom: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  color: var(--primary-color);
}

.section-main-card .content {
  margin: 0px var(--spacing-md);
}

.line-main-why,
.line-main-why-two {
  content: "";
  border-top: 0.5rem solid var(--primary-color);
  display: inline-block;
  margin-bottom: var(--spacing-xs);
  border-radius: var(--border-radius-pill);
}

.line-main-why {
  width: 12.5rem;
}

.line-main-why-two {
  width: 1.5625rem;
}

.section-three-img img {
  max-width: 28.125rem !important;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .section-three-img img {
    max-width: 23.75rem !important;
  }
}

@media only screen and (max-width: 384px) {
  .section-three-img img {
    max-width: 17.5rem !important;
  }
}

.featured {
  color: var(--primary-color) !important;
}

.img-main-three>img {
  max-width: 31.25rem;
  width: 100%;
  position: relative;
  top: -3.125rem;
}

.btn-section-three>button,
.btn-section-three>a {
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-weight: bold;
  padding: var(--spacing-md);
}

.btn-section-three {
  text-align: left;
}

@media only screen and (max-width: 998px) {
  .img-main-three>img {
    max-width: 23.75rem;
    margin-top: 1rem;
  }

  .exams-bg>.container {
    text-align: center !important;
  }

  .btn-section-three {
    text-align: center !important;
  }
}

@media only screen and (max-width: 384px) {
  .img-main-three>img {
    max-width: 17.5rem;
  }
}

.btn-section-four>button {
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-weight: bold;
  padding: var(--spacing-md);
}

.btn-section-four {
  text-align: center !important;
}

.map {
  color: white !important;
  font-weight: bold !important;
}

.map:hover {
  text-decoration: underline !important;
}

/* ===================================
   UNITS SECTION (Section 4)
   =================================== */
.row .img-background-section-four {
  height: 25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--border-radius-lg);
  max-width: 20rem;
}

.row .img-background-section-four:nth-child(1) {
  background-image: url("../img/unity01.jpg");
}

.row .img-background-section-four:nth-child(2) {
  background-image: url("../img/unity02.jpg");
}

.row .img-background-section-four:nth-child(3) {
  background-image: url("../img/unity03.jpg");
}

.row .img-background-section-four:nth-child(4) {
  background-image: url("../img/unity02.jpg");
}

@media only screen and (max-width: 767px) {
  .row .img-background-section-four {
    max-width: 90%;
  }
}

.text-format-four {
  text-align: center;
  top: 35% !important;
  position: relative;
  color: #ffffff !important;
}

.text-format-four h4 {
  color: #ffffff !important;
}

.image-background-color-four {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-lg);
}

.image-background-color-four-in {
  background-color: var(--background-color-section-primary);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-lg);
}

.text-format-four-in {
  text-align: center;
  top: 10% !important;
  position: relative;
  color: #ffffff !important;
}

.text-format-four-in h4 {
  color: #ffffff !important;
}

.text-format-four-in p {
  font-size: 14px !important;
  color: #ffffff !important;
}

/* ===================================
   SURVEY SECTION (Section Five)
   =================================== */
.survey-bg h2 {
  color: #ffffff;
}

.survey-bg p {
  color: #ffffff;
}

.btn-section-five {
  text-align: center !important;
}

.btn-section-five>button,
.btn-section-five>a {
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-weight: bold;
  padding: var(--spacing-md);
}

/* ===================================
   PARTNERS CAROUSEL (Section Six)
   =================================== */
.glider-dot.active {
  background: var(--primary-color);
}

.main-section-six h2 {
  color: var(--text-color-heading);
}

.main-section-six p {
  color: var(--text-color-primary);
}

.main-section-six .partners-text {
  max-width: 56.25rem;
  margin: 0 auto;
}

.main-section-six .partners-text strong {
  color: var(--text-color-heading);
}

/* ===================================
   FAQ SECTION (Section Seven)
   =================================== */
.faq-bg h2 {
  color: white !important;
  padding: var(--spacing-sm) 0 var(--spacing-lg) 0;
}

.faq-bg p {
  color: var(--text-color-light);
}

/* ===================================
   BMI CALCULATOR (Section Ten)
   =================================== */
.imc {
  margin-top: 1.875rem !important;
}

.imc button {
  background-color: var(--background-color-section-secondary);
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border-color: var(--background-color-section-secondary) !important;
}

.imc-button {
  border-radius: var(--border-radius-pill);
}

.imc input {
  border-color: var(--background-color-section-secondary) !important;
}

.imc .input::placeholder {
  color: rgba(65, 66, 82, 0.6);
}

.format-text-section-ten h3 {
  color: var(--primary-color);
}

.main-section-ten {
  color: var(--text-color-primary);
}

#img-imc {
  max-width: 18.125rem;
}

/* ===================================
   FACEBOOK FEED SECTION
   =================================== */
.facebook-section {
  background-color: var(--background-color-body);
}

.facebook-section h2 {
  color: var(--text-color-heading);
}

.facebook-section p {
  color: var(--text-color-primary);
}

.facebook-feed-wrapper {
  display: flex;
  justify-content: center;
}

.facebook-feed-window {
  width: 100%;
  max-width: 34rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.12),
    0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

.facebook-feed-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #ffffff;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
}

.facebook-feed-header i {
  font-size: 1.375rem;
}

.facebook-feed-body {
  padding: 1rem;
  display: flex;
  justify-content: center;
  min-height: 10rem;
  background-color: #f5f6fa;
}

.facebook-feed-body .fb-page,
.facebook-feed-body .fb-page span,
.facebook-feed-body .fb-page iframe {
  width: 100% !important;
}

@media only screen and (max-width: 576px) {
  .facebook-feed-window {
    max-width: 100%;
  }

  .facebook-feed-header {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }

  .facebook-feed-body {
    padding: 0.5rem;
  }
}

/* ===================================
   FOOTER
   =================================== */
.bg-footer {
  background-color: var(--background-color-footer);
}

.bg-footer p {
  color: var(--text-color-light) !important;
}

.bg-footer a {
  color: var(--text-color-light) !important;
}

.bg-title {
  color: var(--text-color-contrast);
}

.bg-footer ::placeholder {
  color: var(--text-color-light) !important;
}

.bg-footer button {
  padding: 0.5rem 5rem 0.5rem 5rem !important;
  background-color: var(--background-color-button-footer);
  border-color: var(--background-color-button-footer);
}

.bg-footer a:hover {
  text-decoration: underline !important;
}

@media only screen and (max-width: 767px) {
  .bg-footer p {
    text-align: center !important;
  }
}

.footerLine {
  content: "";
  border-top: 0.125rem solid var(--background-color-section-secondary);
  width: var(--spacing-lg);
  display: block;
  margin-bottom: var(--spacing-xs);
  text-align: center;
}

@media (max-width: 766px) {
  .footerLine {
    margin: 0 auto;
  }
}

/* ===================================
   SMACSS MODULES - BUTTON
   =================================== */
/* Module: Button Base */
.button {
  display: inline-block;
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: none;
  padding: 0.75rem 1.5rem;
  /* 12px 24px in rem */
  font-size: 1rem;
  /* 16px */
  line-height: 1.5;
  border-radius: var(--border-radius-sm);
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 7.5rem;
  /* 120px in rem */
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
  /* 0.5px in rem */
}

.button:focus,
.button:active {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 118, 209, 0.25);
}

/* State: Button Disabled */
.button.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* State: Active Elements */
.is-active {
  background-color: var(--primary-color) !important;
  color: white !important;
}

/* Module Variants: Button Types */
.button-primary {
  background-color: var(--primary-color);
  color: white;
}

.button-primary:hover {
  background-color: var(--primary-color-hover);
  color: white;
  transform: translateY(-0.125rem);
  /* -2px in rem */
  box-shadow: 0 0.25rem 0.75rem rgba(26, 118, 209, 0.3);
  /* 0 4px 12px */
}

.button-primary:active {
  background-color: var(--primary-color-hover);
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.375rem rgba(26, 118, 209, 0.3);
  /* 0 2px 6px */
}

.button-light {
  background-color: white;
  color: var(--primary-color);
}

.button-light:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.75rem rgba(26, 118, 209, 0.2);
}

.survey-bg .button-light:hover,
.faq-bg .button-light:hover {
  background-color: var(--text-color-contrast);
  color: var(--primary-color);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 246, 255, 1) 100%);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.18);
}

.button-light:active {
  background-color: var(--primary-color-hover);
  color: white;
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.375rem rgba(26, 118, 209, 0.2);
}

.survey-bg .button-light:active,
.faq-bg .button-light:active {
  background-color: rgba(245, 246, 255, 1);
  color: var(--primary-color);
  background-image: none;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.16);
}

/* Responsive Button Adjustments & Text Alignment */
@media only screen and (max-width: 768px) {
  .button {
    padding: 0.625rem 1.25rem;
    /* 10px 20px in rem */
    font-size: 0.9375rem;
    /* 15px */
    min-width: 6.25rem;
    /* 100px in rem */
  }
}

@media only screen and (max-width: 576px) {
  .button {
    padding: 0.75rem 1rem;
    /* 12px 16px in rem */
    font-size: 0.875rem;
    /* 14px */
    min-width: 5.625rem;
    /* 90px in rem */
    width: 100%;
    margin-bottom: var(--spacing-sm);
  }
}

/* ===================================
   SMACSS THEMES - SECTION BACKGROUNDS
   =================================== */
/* Theme: Semantic Section Backgrounds */
.exams-bg {
  background-color: var(--background-color-section-primary);
}

/* ===================================
   BOOTSTRAP OVERRIDES - MODAL
   =================================== */
.modal-backdrop.show {
  opacity: 0.25;
}

.units-bg {
  background-color: var(--background-color-body);
}

.gallery-bg {
  background-color: var(--background-color-body);
}

.gallery-grid {
  justify-content: center;
}

.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  position: relative;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.gallery-item::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.04);
}

.gallery-item:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 52, 148, 0.25), 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.08);
}

#galleryModal .modal-dialog {
  max-width: 56.25rem;
  /* 900px */
}

@media only screen and (max-width: 992px) {
  #galleryModal .modal-dialog {
    max-width: 92vw;
  }
}

#galleryModal .modal-body {
  overflow: hidden;
  padding: 0.75rem;
}

#galleryModal .gallery-modal-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#galleryModalImage {
  max-width: 100%;
  max-height: calc(100vh - 12rem);
  width: auto;
  height: auto;
  object-fit: contain;
}

#galleryModalCaption {
  text-align: center;
  max-width: 100%;
}

@media only screen and (max-width: 576px) {
  #galleryModalImage {
    max-height: calc(100vh - 10rem);
  }
}

.survey-bg {
  background-color: var(--primary-color);
}

.faq-bg {
  background-color: var(--background-color-section-secondary);
}

/* ===================================
   SMACSS MODULES - FORM COMPONENTS
   =================================== */

/* Module: Base Input Styles */
.input {
  font-family: var(--font-family-primary);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color-primary);
  background-color: var(--text-color-contrast);
  border: 0.0625rem solid var(--border-color-light);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  transition: all var(--animation-duration-fast) ease;
  width: 100%;
  box-sizing: border-box;
  display: block;
  margin-bottom: var(--spacing-sm);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--shadow-color-primary-light);
  background-color: var(--text-color-contrast);
}

.input::placeholder {
  color: var(--text-color-light);
  font-weight: var(--font-weight-regular);
  opacity: 1;
}

/* Module: Input Variants */
.input-large {
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
}

/* Module: Textarea */
.textarea {
  font-family: var(--font-family-primary);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color-primary);
  background-color: var(--text-color-contrast);
  border: 0.0625rem solid var(--border-color-light);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  transition: all var(--animation-duration-fast) ease;
  width: 100%;
  box-sizing: border-box;
  display: block;
  margin-bottom: var(--spacing-sm);
  resize: vertical;
  min-height: 5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--shadow-color-primary-light);
  background-color: var(--text-color-contrast);
}

.textarea::placeholder {
  color: var(--text-color-light);
  font-weight: var(--font-weight-regular);
  opacity: 1;
}

/* ===================================
   LOGIN FORM COMPONENTS
   =================================== */

/* Module: Login Modal Container */
.login-modal {
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* Module: Login Form */
.login-form {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-sm);
  border: none;
  animation: loginFadeIn var(--animation-duration-normal) ease-in-out;
}

@keyframes loginFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Module: Login Form Header */
.login-form-header {
  text-align: center;
  padding: 2rem 1.25rem 1rem;
}

.login-form-title {
  color: var(--text-color-contrast);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  font-size: 1.75rem;
  margin: 0;
  letter-spacing: 0.0625rem;
}

/* Module: Login Form Body */
.login-form-body {
  padding: 0 1.25rem 1.875rem;
}

/* Module: Login Form Group */
.login-form-group {
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
}

.login-form-group--password {
  display: flex;
  align-items: center;
}

/* Module: Login Form Input */
.login-form-input {
  width: 100%;
  height: 3.5rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-family-primary);
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-color-primary);
  background-color: var(--text-color-contrast);
  border: 0.125rem solid var(--primary-color);
  border-radius: var(--border-radius-sm);
  transition: all var(--animation-duration-fast) ease;
  box-sizing: border-box;
}

.login-form-input::placeholder {
  color: var(--text-color-heading-hover);
  font-weight: var(--font-weight-bold);
  font-size: 0.9375rem;
  text-transform: uppercase;
}

.login-form-input:focus {
  outline: none;
  border-color: var(--primary-color-hover);
  box-shadow: 0 0 0 3px var(--shadow-color-primary-light);
  background-color: var(--text-color-contrast);
}

.login-form-input--password {
  padding-right: 3.5rem;
}

/* Module: Login Form Toggle Password Button */
.login-form-toggle-password {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0 1rem;
  transition: color var(--animation-duration-fast) ease;
}

.login-form-toggle-password:hover {
  color: var(--primary-color-hover);
}

.login-form-toggle-password:focus {
  outline: none;
  color: var(--primary-color-hover);
}

.login-form-toggle-password i {
  font-size: 1.125rem;
  line-height: 1;
}

/* Module: Login Form Link */
.login-form-link {
  display: block;
  text-align: center;
  color: var(--text-color-contrast);
  font-family: var(--font-family-primary);
  font-size: 0.875rem;
  text-decoration: none;
  margin: 0.5rem 0 1rem;
}

.login-form-link:hover {
  color: var(--text-color-contrast);
  text-decoration: underline;
}

/* Module: Login Form Submit Button */
.login-form-submit {
  width: 100%;
  height: 3.125rem;
  background-color: var(--primary-color);
  color: var(--text-color-contrast);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--animation-duration-fast) ease;
  margin-top: 0.5rem;
}

.login-form-submit:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 1rem var(--shadow-color-primary);
}

.login-form-submit:active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.5rem var(--shadow-color-primary);
}

.login-form-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--shadow-color-primary-light);
}

/* Responsive Design - Login Form */
@media only screen and (max-width: 576px) {
  .login-form-title {
    font-size: 1.5rem;
  }

  .login-form-input {
    height: 3rem;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  .login-form-input--password {
    padding-right: 3rem;
  }

  .login-form-toggle-password {
    padding: 0 0.75rem;
  }

  .login-form-toggle-password i {
    font-size: 1rem;
  }

  .login-form-submit {
    height: 2.875rem;
    font-size: 1rem;
  }
}

/* ===================================
   SMACSS THEMES - FORM CONTEXTS
   =================================== */

/* Theme: Login Form Inputs */
.input-login {
  background-color: var(--text-color-contrast) !important;
  border: 0.0625rem solid var(--primary-color) !important;
  color: var(--text-color-primary) !important;
  font-weight: var(--font-weight-bold);
  border-radius: var(--border-radius-sm);
}

.input-login::placeholder {
  color: var(--text-color-heading-hover) !important;
  font-weight: var(--font-weight-bold) !important;
  font-size: 0.9375rem !important;
  text-transform: uppercase;
}

.input-login:focus {
  border-color: var(--primary-color-hover) !important;
  box-shadow: 0 0 0 3px var(--shadow-color-primary-light) !important;
  background-color: var(--text-color-contrast) !important;
}

/* Theme: Footer Form Inputs */
.input-footer {
  background-color: var(--background-color-footer-input) !important;
  border: 0.0625rem solid var(--background-color-footer) !important;
  color: var(--text-color-contrast) !important;
}

.input-footer::placeholder {
  color: var(--text-color-light) !important;
}

.input-footer:focus {
  background-color: var(--background-color-footer-input) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px var(--shadow-color-primary-light) !important;
}

.textarea-footer {
  background-color: var(--background-color-footer-input) !important;
  border: 0.0625rem solid var(--background-color-footer) !important;
  color: var(--text-color-contrast) !important;
}

.textarea-footer::placeholder {
  color: var(--text-color-light) !important;
}

.textarea-footer:focus {
  background-color: var(--background-color-footer-input) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px var(--shadow-color-primary-light) !important;
}

/* ===================================
   SMACSS STATE - FORM VALIDATION
   =================================== */

/* State: Valid Input */
.input.is-valid,
.textarea.is-valid {
  border-color: #28a745;
  background-color: var(--text-color-contrast);
}

.input.is-valid:focus,
.textarea.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
}

/* State: Invalid Input */
.input.is-invalid,
.textarea.is-invalid {
  border-color: #dc3545;
  background-color: var(--text-color-contrast);
}

.input.is-invalid:focus,
.textarea.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

/* ===================================
   RESPONSIVE DESIGN - INPUTS
   =================================== */

@media only screen and (max-width: 768px) {

  .input,
  .textarea {
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
  }

  .input-large {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .input-small {
    padding: 0.5rem 0.625rem;
    font-size: 0.8125rem;
  }
}

@media only screen and (max-width: 576px) {

  .input,
  .textarea {
    padding: 0.75rem 0.875rem;
    font-size: 1rem;
  }
}

/* ===================================
   SMACSS MODULES - VISUAL EFFECTS
   =================================== */
/* Module: Border Radius */
.rounded {
  border-radius: var(--border-radius-sm);
}

/* Module: Shadow */

.shadow-large {
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.15);
  /* 0 10px 25px */
}

/* ===================================
   SMACSS UTILITIES - TEXT & SPACING
   =================================== */
/* Utility: Text Alignment */
.u-text-center {
  text-align: center !important;
}

/* ===================================
   UTILITY COMPONENTS
   =================================== */

/* Dynamic visibility class for btnTop.js (escopado para não conflitar com o Bootstrap) */
#myBtn.show {
  opacity: 1 !important;
  visibility: visible !important;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 2%;
  z-index: 99;
  font-size: 1.125rem;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  cursor: pointer;
  padding: var(--spacing-md);
  border-radius: 3.125rem;
}

#myBtn:hover {
  background-color: var(--text-color-heading);
}

@media only screen and (max-width: 992px) {
  .removeElement {
    display: none;
  }
}