@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --text-dark: hsl(240, 54%, 15%);
  --text-light: hsl(242, 18%, 64%);
  --primary: hsl(222, 98%, 60%);
  --primary-lighter: hsl(240, 33%, 86%);
  --primary-gradient: linear-gradient(to right, #3671fd, #6f31ff);
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Poppins, sans-serif;
  height: 100vh;
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  height: 100%;
  max-width: fit-content;
  max-height: fit-content;
  display: flex;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.image-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.logo-container1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slide-content {
  position: relative;
  width: 100%;
  background: #ffffff;
  text-align: center;
  color: rgb(201, 20, 20);
  z-index: 2;
  text-align: center;
}

.slide-content img {
  margin: 0 2rem;
  color: #1e3ae5;
  text-align: center;
}

.partner {
  align-items: center;
  background: #ffffff;
}

.partner .partner-text {
  color: #080808;
  margin: 0.5rem 0 0 0;
  font-size: 1.2rem;
  text-transform: capitalize;
  letter-spacing: 0.05rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-align: center;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  text-shadow: 1px 1px 3px rgba(27, 19, 97, 0.1);
}

.partner-logo {
  width: 6rem;
  height: 6rem;
  position: relative;
}

.icon-3d {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  transform-style: preserve-3d;
}

.icon-3d i {
  color: white;
  text-shadow: 0 0 20px rgba(54, 113, 253, 0.5);
}

.rotating-logo {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  position: relative;
}

@keyframes icon-float {
  0%,
  100% {
    transform: translateZ(20px);
  }

  50% {
    transform: translateZ(40px);
  }
}

.form-section {
  width: 50rem;
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 0 24px 24px 0;
  display: flex;
  justify-content: center;
  position: relative;
  transform-style: preserve-3d;
}

.form-wrapper {
  width: 100%;
  font-size: 0.6rem;
  max-width: 90%;
  padding: 10%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  border-radius: 0.4;
  text-shadow: 1px 1px 1px rgba(117, 114, 114, 0.5);
}

.form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.form-card h2 {
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.06rem;
}

.form-header {
  margin: 0.6rem 0;
  letter-spacing: 0.06rem;
}

.input-group {
  margin: 1.1rem 0 1.5rem 0;
  position: relative;
  letter-spacing: 0.06rem;
}

.input-group input {
  width: 100%;
  padding: 20px;
  border: none;
  margin-top: 0.4rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  font-size: 12px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff73;
}

.input-group input:focus {
  background: white;
  box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff73;
}

.input-group label {
  position: absolute;
  left: 20px;
  top: 22px;
  color: #666;
  font-weight: 300;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0);
  padding: 0 5px;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -4px;
  left: 16px;
  font-size: 0.7rem;
  font-weight: 500;
  background: linear-gradient(125deg, #1e3ae5 0%, #00d4ff 100%);
  color: rgb(255, 255, 255);
  border-radius: 5px;
  padding: 1px 15px;
}

.welcome-text {
  margin: 0.6rem 0;
    font-size: 1.5rem;
  color: #1234f7;
}

.para {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 0.05rem;
}

/* Checkbox and Forgot Password Styles */
.checkbox-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  letter-spacing: 0.06rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
}

.checkbox-container input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0 12px 0 0;
  /* padding: 1px; */
  accent-color: #314cff;
  cursor: pointer;
  border: none;
  box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff73;
}

.checkbox-container label {
  position: static;
  color: #1e3ae5;
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  transition: none;
  background: transparent;
  padding: 0;
}

.forgot-link {
  color: #1738f1;
  font-size: 0.7rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  letter-spacing: 0.06rem;
}

.forgot-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #1e3ae5;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 5px #babecc, -5px -5px 10px #ffffff73;
  margin-top: 1.8rem;
  letter-spacing: 0.05rem;
}

.submit-btn:hover {
  background: linear-gradient(125deg, #1e3ae5 0%, #00d4ff 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.05rem;
}

.form-footer a {
  color: #213cf0;
  text-decoration: none;
  font-weight: 500;
}

.social-media-container {
  margin-top: 2rem;
  text-align: center;
}

.connect-text {
  color: var(--text-dark);
  font-size: 0.7rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.partner .connect-text {
  color: #1e3ae5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  font-weight: 600;
}

.connect-text::before,
.connect-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--text-light);
  opacity: 0.5;
}

.connect-text::before {
  left: -40px;
}

.connect-text::after {
  right: -40px;
}

.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.social-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  color: #1e3ae5;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff73;
  position: relative;
  overflow: hidden;
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.4);
}

/* Individual icon colors on hover */
.social-icon:hover .fa-facebook-f {
  color: #3b5998;
  /* Facebook */
}

.social-icon:hover .fa-linkedin-in {
  color: #0077b5;
  /* LinkedIn */
}

.social-icon:hover .fa-instagram {
  color: transparent;
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.social-icon:hover .fa-x-twitter {
  color: transparent;
  background: rgb(0, 0, 0);
  -webkit-background-clip: text;
  background-clip: text;
}

.social-icon:hover .fa-google-play {
  color: transparent;
  background: linear-gradient(45deg, #0f9d58, #db4437, #fdd835, #4285f4);
  -webkit-background-clip: text;
  background-clip: text;
}



@media screen and (max-width: 992px) {
  .container {
    flex-direction: column;
    width: 90%;
    margin: 2rem auto;
    border-radius: 24px;
  }

  .image-section,
  .form-section {
    width: 100%;
  }
  .rotating-logo {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: relative;
}

  .image-section {
    height: 300px;
    border-radius: 24px 24px 0 0;
  }

  .form-section {
    border-radius: 0 0 24px 24px;
    padding: 2.5rem 2rem;
  }

  .form-wrapper {
    padding: 5%;
  }
}

@media screen and (max-width: 768px) {
  .container {
    width: 95%;
  }

  .form-wrapper {
    max-width: 100%;
    padding: 4%;
  }

  .form-card h2 {
    font-size: 24px;
  }

  .input-group {
    margin: 1.8rem 0;
  }

  .swiper {
    height: 300px;
    /* Adjust for mobile */
  }

  .connect-text {
    color: var(--text-dark);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
  }

  .partner-logo {
    width: 4rem;
    height: 4rem;
    position: relative;
  }

  .partner .connect-text {
    color: #1e3ae5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-weight: 600;
  }

  .connect-text::before,
  .connect-text::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--text-light);
    opacity: 0.5;
  }

  .connect-text::before {
    left: -40px;
  }

  .connect-text::after {
    right: -40px;
  }

  .social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  .social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: #1e3ae5;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff73;
    position: relative;
    overflow: hidden;
  }

  .social-icon:hover::before {
    opacity: 1;
  }

  .social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
  }

  .social-icon:hover i {
    transform: scale(1.4);
  }
}

@media screen and (max-width: 576px) {
  .container {
    width: 100%;
    margin: 0;
    border-radius: 0;
    height: 100%;
  }

  .image-section {
    justify-content: center;
    width: 100%;
    height: 100%;

    border-radius: 0;
  }

  .partner-logo {
    width: 2rem;
    height: 2rem;
    position: relative;
  }

  .form-section {
    padding: 1rem 0.9rem;
    border-radius: 24px 24px 0 0;
    margin-top: -10px;
  }

  .form-wrapper {
    padding: 10% 10%;
  }

  .input-group input {
    padding: 20px;
  }

  .input-group label {
    padding: 0px;
  }

  .checkbox-group {
    line-height: 2em;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-overflow: ellipsis;
  }

  .connect-text {
    color: var(--text-dark);
    font-size: 0.4rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
  }

  .partner .connect-text {
    color: #1e3ae5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-weight: 600;
  }

  .connect-text::before,
  .connect-text::after {
    content: "";
    position: absolute;
    top: 20%;
    width: 30px;
    height: 1px;
    background: var(--text-light);
    opacity: 0.5;
  }

  .connect-text::before {
    left: -40px;
  }

  .connect-text::after {
    right: -40px;
  }

  .social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  .social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: #1e3ae5;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 4px rgba(161, 154, 154, 0.1);
    position: relative;
    overflow: hidden;
  }

  .social-icon:hover::before {
    opacity: 1;
  }

  .social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
  }

  .social-icon:hover i {
    transform: scale(1.3);
  }
}



@media screen and (max-width: 992px) {
  .container {
    flex-direction: column;
    width: 90%;
    margin: 2rem auto;
    border-radius: 24px;
  }

  .image-section,
  .form-section {
    width: 100%;
  }

  .image-section {
    height: 300px;
    border-radius: 24px 24px 0 0;
  }

  .form-section {
    border-radius: 0 0 24px 24px;
    padding: 2.5rem 2rem;
  }

  .form-wrapper {
    padding: 5%;
  }
}

@media screen and (max-width: 768px) {
  .container {
    width: 95%;
  }

  .form-wrapper {
    max-width: 100%;
    padding: 4%;
  }

  .form-card h2 {
    font-size: 24px;
  }

  .input-group {
    margin: 1.8rem 0;
  }

  .swiper {
    height: 300px;
    /* Adjust for mobile */
  }

  .connect-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
  }

  .partner .connect-text {
    color: #1e3ae5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    font-weight: 600;
  }

  .connect-text::before,
  .connect-text::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--text-light);
    opacity: 0.5;
  }

  .connect-text::before {
    left: -40px;
  }

  .connect-text::after {
    right: -40px;
  }

  .social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  .social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: #1e3ae5;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff73;
    position: relative;
    overflow: hidden;
  }

  .social-icon:hover::before {
    opacity: 1;
  }

  .social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
  }

  .social-icon:hover i {
    transform: scale(1.4);
  }
}

@media screen and (max-width: 576px) {
  .container {
    width: 100%;
    margin: 0;
    border-radius: 0;
    height: 100%;
  }

  .image-section {
    justify-content: center;
    width: 100%;
    height: 100%;

    border-radius: 0;
  }

  .form-section {
    padding: 1rem 0.9rem;
    border-radius: 24px 24px 0 0;
    margin-top: -10px;
  }

  .form-wrapper {
    padding: 10% 10%;
  }

  .input-group input {
    padding: 20px;
  }

  .input-group label {
    padding: 0px;
  }

  .checkbox-group {
    line-height: 2em;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-overflow: ellipsis;
  }

  .connect-text {
    color: var(--text-dark);
    font-size: 0.4rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
  }

  .partner .connect-text {
    color: #1e3ae5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-weight: 600;
  }

  .connect-text::before,
  .connect-text::after {
    content: "";
    position: absolute;
    top: 20%;
    width: 30px;
    height: 1px;
    background: var(--text-light);
    opacity: 0.5;
  }

  .connect-text::before {
    left: -40px;
  }

  .connect-text::after {
    right: -40px;
  }

  .social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  .social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: #1e3ae5;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 4px rgba(161, 154, 154, 0.1);
    position: relative;
    overflow: hidden;
  }

  .social-icon:hover::before {
    opacity: 1;
  }

  .social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
  }

  .social-icon:hover i {
    transform: scale(1.3);
  }
}

/* Media Queries for All Screens */
@media screen and (max-width: 1200px) {
  .container {
    width: 95%;
  }

  .form-section {
    width: 50%;
    padding: 2rem 1.5rem;
  }
}

@media screen and (max-width: 992px) {
  .container {
    flex-direction: column;
    width: 90%;
    margin: 2rem auto;
    border-radius: 24px;
  }

  .image-section,
  .form-section {
    width: 100%;
  }

  .image-section {
    height: 300px;
    border-radius: 24px 24px 0 0;
  }

  .form-section {
    border-radius: 0 0 24px 24px;
    padding: 2.5rem 2rem;
  }

  .form-wrapper {
    padding: 5%;
  }
}

@media screen and (max-width: 768px) {
  .container {
    width: 95%;
  }

  .form-wrapper {
    max-width: 100%;
    padding: 4%;
  }

  .form-card h2 {
    font-size: 24px;
  }

  .input-group {
    margin: 1.8rem 0;
  }

  .swiper {
    height: 300px;
    /* Adjust for mobile */
  }

  .connect-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
  }

  .partner .connect-text {
    color: #1e3ae5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    font-weight: 600;
  }

  .connect-text::before,
  .connect-text::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--text-light);
    opacity: 0.5;
  }

  .connect-text::before {
    left: -40px;
  }

  .connect-text::after {
    right: -40px;
  }

  .social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  .social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: #1e3ae5;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff73;
    position: relative;
    overflow: hidden;
  }

  .social-icon:hover::before {
    opacity: 1;
  }

  .social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
  }

  .social-icon:hover i {
    transform: scale(1.4);
  }
}

@media screen and (max-width: 576px) {
  .container {
    width: 100%;
    margin: 0;
    border-radius: 0;
    height: 100%;
  }

  .image-section {
    justify-content: center;
    width: 100%;
    height: 100%;

    border-radius: 0;
  }

  .form-section {
    padding: 1rem 0.9rem;
    border-radius: 24px 24px 0 0;
    margin-top: -10px;
  }

  .form-wrapper {
    padding: 10% 10%;
  }

  .input-group input {
    padding: 20px;
  }

  .input-group label {
    padding: 0px;
  }

  .checkbox-group {
    line-height: 2em;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-overflow: ellipsis;
  }

  .connect-text {
    color: var(--text-dark);
    font-size: 0.4rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
  }

  .partner .connect-text {
    color: #1e3ae5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-weight: 600;
  }

  .connect-text::before,
  .connect-text::after {
    content: "";
    position: absolute;
    top: 20%;
    width: 30px;
    height: 1px;
    background: var(--text-light);
    opacity: 0.5;
  }

  .connect-text::before {
    left: -40px;
  }

  .connect-text::after {
    right: -40px;
  }

  .social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  .social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: #1e3ae5;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 4px rgba(161, 154, 154, 0.1);
    position: relative;
    overflow: hidden;
  }

  .social-icon:hover::before {
    opacity: 1;
  }

  .social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
  }

  .social-icon:hover i {
    transform: scale(1.3);
  }
}
