/* =================================================================== */
/* UNIVERSAL STYLESHEET for MagnmaInstitute                            */
/* =================================================================== */

/* -------------------------------------------------- */
/* 1. Global Styles, Variables & Theming
/* -------------------------------------------------- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-accent: #0a4d68;
  --primary-text: #1d2a39;
  --secondary-text: #2f9564;
  --light-bg: #f7fafc;
  --white: #ffffff;
  --border-color: #dee2e6;
  --nav-bg: var(--white);
  --logo-text: #0e7843;
  --logo-span: var(--primary-accent);
  --shadow-1: 0 4px 15px hsla(210, 30%, 60%, 0.1);
  --shadow-2: 0 10px 25px hsla(210, 30%, 60%, 0.15);
  --radius-8: 8px;
  --fw-500: 500;
  --fw-700: 700;
  --fw-800: 800;
  --fs-1: 3.5rem;
  --fs-2: 2.8rem;
  --fs-5: 1.5rem;
  --fs-6: 1.1rem;
}

body {
  background-color: var(--white);
  color: var(--secondary-text);
  padding-top: 80px;
  transition: background-color 0.3s;
}

body[data-theme="original"] {
  --primary-accent: #525ee0;
  --primary-text: #231f41;
  --secondary-text: #737373;
  --light-bg: #fff2e9;
  --white: #ffffff;
  --border-color: #f5f5f5;
  --nav-bg: #fff2e9;
  --logo-text: #19307a;
  --logo-span: #f64c4c;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  color: var(--primary-text);
  transition: color 0.3s;
}

img {
  max-width: 100%;
  display: block;
}

/* -------------------------------------------------- */
/* 2. Common Components (Header, Footer, Buttons, Forms)
/* -------------------------------------------------- */

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background-color: var(--nav-bg);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.logo a {
  font-size: 2rem;
  font-weight: var(--fw-800);
  color: var(--logo-text);
}

.logo a span {
  color: var(--logo-span);
}

nav .nav-items-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

nav .hero-links a {
  padding: 5px 10px;
  font-size: 1.1rem;
  font-weight: var(--fw-500);
  transition: color 0.3s ease;
}

nav .hero-links a:hover {
  color: var(--primary-accent);
}

#theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--secondary-text);
  padding: 5px;
  line-height: 1;
}

#theme-toggle:hover {
  color: var(--primary-accent);
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.ham-bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary-text);
  border-radius: 3px;
  margin: 5px 0;
  transition: 0.4s;
}

/* --- Buttons --- */
.hero-btn a,
.view-more-btn,
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: var(--fw-700);
  color: var(--white);
  background-color: var(--primary-accent);
  border: 2px solid var(--primary-accent);
  border-radius: var(--radius-8);
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
  text-align: center;
}

.hero-btn a:hover,
.view-more-btn:hover,
.cta-button:hover {
  background-color: transparent;
  color: var(--primary-accent);
}

.cta-button {
  width: 100%;
  margin-top: 30px;
  font-size: 1.2rem;
  cursor: pointer;
}

body[data-theme="original"] .hero-btn a,
body[data-theme="original"] .view-more-btn,
body[data-theme="original"] .cta-button,
body[data-theme="original"] .form .form-submit-btn {
  background-color: var(--primary-text);
  border-color: var(--primary-text);
  color: var(--white);
}

body[data-theme="original"] .hero-btn a:hover,
body[data-theme="original"] .view-more-btn:hover,
body[data-theme="original"] .cta-button:hover,
body[data-theme="original"] .form .form-submit-btn:hover {
  background-color: transparent;
  color: var(--primary-text);
}

/* --- Forms & Search --- */
.form-title {
  font-size: var(--fs-5);
  margin-bottom: 1.5rem;
}

.form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: var(--radius-8);
  border: 1px solid var(--border-color);
  background-color: #fcfcfc;
}

.form .form-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background-color: var(--primary-accent);
  border-radius: var(--radius-8);
  border: 2px solid var(--primary-accent);
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}

.in-section-search-bar {
  margin-bottom: 50px;
}

.search-input {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  padding: 16px 30px;
  font-size: 1.1rem;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  background-color: var(--white);
}

.no-results {
  display: none;
  text-align: center;
  padding: 25px;
  margin-top: 20px;
  border-radius: var(--radius-8);
  background-color: #fff9e3;
  color: #8a6d3b;
}

/* --- Footer --- */
footer {
  background-color: var(--primary-text);
  padding: 50px 5%;
  color: var(--white);
  text-align: center;
}

.up-footer,
.footer-social-links,
.foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-social-links {
  margin-bottom: 30px;
}

.footer-social-links a {
  color: white;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 1.2rem;
}

footer hr {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-footer {
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.6);
}

/* -------------------------------------------------- */
/* 3. General Layout & Section Styles
/* -------------------------------------------------- */
section {
  padding: 80px 5%;
}

section.light-bg {
  background-color: var(--light-bg);
}

.section-heading {
  font-size: var(--fs-2);
  text-align: center;
  margin-bottom: 15px;
}

.section-intro {
  font-size: var(--fs-6);
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.7;
}

.main-container {
  padding: 60px 5%;
}

/* -------------------------------------------------- */
/* 4. Page-Specific Section Styles
/* -------------------------------------------------- */

/* --- Home Page: Hero --- */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background-color: var(--light-bg);
  min-height: calc(100vh - 80px);
}

.hero-text h1 {
  font-size: var(--fs-1);
}

.hero-text h3 {
  font-size: 1.4rem;
  margin-bottom: 40px;
}

.hero-img img {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* --- Home Page: Services --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius-8);
  text-align: center;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border-color);
}

.service-box img {
  height: 80px;
  margin: 0 auto 25px auto;
}

.service-box h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* --- Home Page: About --- */
.about-container {
  display: flex;
  align-items: center;
  gap: 5%;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 30px;
}

/* --- Home Page: Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.office-box {
  padding: 20px;
  background-color: var(--white);
  border-radius: var(--radius-8);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border-color);
  border-left: 5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.office-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.office-box.active {
  border-left-color: var(--primary-accent);
  box-shadow: var(--shadow-2);
}

.office-box .fa {
  margin-right: 15px;
  margin-top: 5px;
  color: var(--primary-accent);
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: var(--radius-8);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- All Colleges/Courses Page: Heading --- */
.page-heading {
  font-size: var(--fs-2);
  text-align: center;
  margin-bottom: 40px;
}

/* --- College & Course Grids/Cards --- */
.colleges-container,
.courses-grid {
  display: grid;
  gap: 30px;
}

.colleges-container {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.courses-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.college-item {
  display: block; /* Use block for course-template */
  text-align: center;
  border-radius: var(--radius-8);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  background-color: var(--white);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.all-colleges-page .college-item {
  display: flex; /* Override for all-colleges page */
  flex-direction: column;
}

.college-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2);
}

.college-item .college-logo,
.college-item .college-image-wrapper {
  height: 200px;
  padding: 1.5rem;
  display: flex;
  align-items: center;  
  justify-content: center;
}
.college-item .college-logo img,
.college-item .college-image-wrapper img {
  width: 100%;             /* Spans the full width of the card */
  height: 180px;           /* FORCE a specific height. Adjust this number if you want taller/shorter cards */
  object-fit: contain;     /* CRITICAL: Keeps the logo aspect ratio perfect. Use 'cover' for photos, 'contain' for logos. */
  object-position: center; /* Centers the logo exactly in the middle */
  padding: 20px;           /* Adds white space around the logo so it doesn't touch edges */
  background-color: #ffffff; /* Ensures transparent logos look clean */
  border-bottom: 1px solid var(--border-color);
}
.college-item:hover .college-logo img,
.college-item:hover .college-image-wrapper img {
  transform: scale(1.05);
}

.college-item img.slideshow-active {
  object-fit: cover;
  padding: 0;
}

.college-item-text {
  padding: 25px 20px;
}

.college-item-text h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.course-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--radius-8);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border-color);
  transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2);
}

.course-card-text {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-card-text h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.course-card-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Home page simple course cards */
.courses-section .course-card {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  min-height: 220px;
}
.courses-section .course-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

/* All courses page detailed cards */
.all-courses-page .course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* --- College Template Page --- */
.college-hero-slideshow {
  height: 50vh;
  min-height: 400px;
  max-height: 500px;
  position: relative;
  background-color: #e0e0e0;
}

.slideshow-container {
  width: 100%;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 5% 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
}

.hero-text-overlay h1 {
  font-size: 3.5rem;
  color: var(--white);
}

.hero-text-overlay p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.details-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.main-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-accent);
  margin-top: 40px;
}

.main-content h2:first-child {
  margin-top: 0;
}

.college-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.styled-list {
  list-style: none;
  padding-left: 0;
}

.styled-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%232f9564" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>')
    no-repeat left center;
  background-size: 20px;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.college-sidebar {
  background-color: var(--white);
  border-radius: var(--radius-8);
  padding: 30px;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border-color);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.college-sidebar h3 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: center;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.fact-item .fa {
  font-size: 1.2rem;
  color: var(--primary-accent);
  margin-top: 5px;
  width: 20px;
  text-align: center;
}

.fact-item strong {
  display: block;
  font-size: 1rem;
  color: #555;
}

.fact-item span,
.fact-item a {
  font-size: 1.1rem;
  color: var(--primary-text);
}

.form-section-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease-in-out, padding 0.5s ease-in-out;
  padding: 0 5%;
  background-color: var(--white);
}

.form-section-container.visible {
  max-height: 1500px; /* Adjust if form is taller */
  padding: 80px 5%;
}

.view-gallery-btn,
.image-modal-overlay,
.modal-close-btn,
.enlarged-view {
  /* Styles for the image gallery modal from college-template.html */
  /* They are highly specific and don't need merging */
}
.view-gallery-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: var(--radius-8);
  cursor: pointer;
  z-index: 10;
  font-weight: 600;
  transition: background-color 0.3s;
  display: none;
}
.view-gallery-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.view-gallery-btn .fa {
  margin-right: 8px;
}
.image-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1001;
  justify-content: center;
  align-items: center;
}
.modal-content {
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius-8);
  width: 95%;
  max-width: 1400px;
  height: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close-btn {
  position: fixed;
  top: 15px;
  right: 25px;
  color: #fff;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1003;
}
.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  padding-top: 20px;
}
.modal-grid img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-8);
  cursor: pointer;
  transition: transform 0.2s;
}
.modal-grid img:hover {
  transform: scale(1.03);
}
.enlarged-view {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.enlarged-view img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: var(--radius-8);
}

/* --- Course Template Page --- */
.course-header {
  padding: 60px 5%;
  background-color: #0a4d68;
  color: #fff;
  text-align: center;
}

.course-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #fff;
}

.course-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

#specialization-filter-container {
  display: none;
  text-align: center;
  margin: 0 auto 40px auto;
  padding: 25px;
  background-color: rgba(10, 77, 104, 0.05);
  border-radius: 12px;
  max-width: 500px;
  border: 1px solid var(--border-color);
}

#specialization-filter-container label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-text);
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 8px;
}

.select-wrapper::after {
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 1.2rem;
  color: var(--primary-accent);
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: color 0.3s ease;
}

#btech-specialization-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 12px 40px 12px 20px;
  font-size: 1rem;
  color: var(--primary-text);
  background-color: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#btech-specialization-select:hover {
  border-color: var(--primary-accent);
}

#btech-specialization-select:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 4px rgba(10, 77, 104, 0.2);
}

#btech-specialization-select option {
  padding: 10px;
  font-weight: 500;
}

/* -------------------------------------------------- */
/* 5. Responsive Styles
/* -------------------------------------------------- */
@media screen and (max-width: 992px) {
  body {
    padding-top: 70px;
  }
  nav {
    height: 70px;
  }
  nav .hero-btn,
  nav .nav-items-container .hero-links {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
  .hamburger-menu.active .bar-top {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .hamburger-menu.active .bar-mid {
    opacity: 0;
  }
  .hamburger-menu.active .bar-bottom {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  .hero-links {
    position: fixed;
    top: 70px; /* Match nav height */
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease-in-out;
    z-index: 999;
    gap: 20px;
  }
  .hero-links.active {
    right: 0;
  }
  .hero-links a {
    color: var(--primary-text);
    font-size: 1.8rem;
  }
  nav .nav-items-container .hero-links {
    display: flex;
  }

  /* Page layout adjustments */
  .hero-section,
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .map-container {
    order: -1;
    min-height: 300px;
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .college-sidebar {
    position: static;
    margin-top: 40px;
  }
  .hero-text-overlay h1 {
    font-size: 2.5rem;
  }
  .modal-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
.form-section-container {
  /* Transition and Layout */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out, padding 0.8s ease-in-out,
    opacity 0.5s ease-in-out;
  padding: 0 5%;
  opacity: 0;
  border-top: 1px solid var(--border-color);

  /* --- NEW THEME-FRIENDLY BACKGROUND --- */
  /* This uses a very light base color from your theme and overlays a subtle texture */
  background-color: var(--light-bg);
  background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23dee2e6" fill-opacity="0.15"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
}

/* Styles for when the form is visible */
.form-section-container.visible {
  max-height: 1500px; /* A large value to allow the form to expand */
  padding: 100px 5%;
  opacity: 1;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fcfcfc;
  padding: 40px 50px;
  border-radius: var(--radius-8);
  box-shadow: var(--shadow-2); /* A slightly more prominent shadow */
  text-align: center;
  border: 1px solid var(--border-color);
}

.form-wrapper .form-title {
  font-size: var(--fs-2);
  font-weight: var(--fw-800);
  margin-bottom: 15px;
  color: var(--primary-text);
}

.form-wrapper .form-intro {
  font-size: var(--fs-6);
  color: var(--secondary-text);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.form-wrapper .form {
  text-align: left;
}

/* Responsive adjustments for the form section */
@media screen and (max-width: 768px) {
  .form-section-container.visible {
    padding: 60px 5%;
  }

  .form-wrapper {
    padding: 30px 25px;
  }

  .form-wrapper .form-title {
    font-size: 2.2rem;
  }
}
