* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'ClashDisplay-Semibold';
  src: url('../fonts/ClashDisplay-Semibold.woff2') format('woff2'),
    url('../fonts/ClashDisplay-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

.main-wrapper {
  background-color: #6b2a76;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.main-wrapper .card {
  background-color: #fff;
  border-radius: 25px;
  max-width: 480px;
  padding: 80px 60px 130px 60px;
  margin: auto;
  position: relative;
}
.main-wrapper .card h1 {
  font-family: 'poppins', sans-serif;
  font-size: 35px;
  margin-bottom: 25px;
}
.main-wrapper .card p {
  font-family: 'poppins', sans-serif;
  font-size: 14px;
  color: #202020;
  font-weight: 500;
  margin-bottom: 40px;
}
.input-effect {
  position: relative;
  width: 100%;
}

.input-effect input {
  width: 100%;
  padding: 5px 0;
  outline: none;
  border: none;
  border-bottom: 2px solid #ccc;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease;
  background: transparent;
  margin-bottom: 25px;
}

.input-effect input:focus {
    border: none;
    border-bottom: 2px solid #8cc63f;
}

.input-effect label {
  position: absolute;
  left: 0;
  top: 34%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #777;
  transition: all 0.3s ease;
  pointer-events: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.input-effect input:focus + label,
.input-effect input:valid + label {
  top: 0;
  font-size: 12px;
  color: #84818a;
}
.btn {
  background-color: #000000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 8px 15px;
  border: 2px solid #000;
  margin-top: 25px;
}
.btn svg {
  stroke: #fff;
}
.btn:hover {
  background-color: #00000010;
  border: 2px solid #000;
}
.btn:hover svg {
  stroke: #000;
}
.copy-right {
  font-weight: 300 !important;
  margin-bottom: 0 !important;
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
}
.content {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.content h1 {
  font-family: 'ClashDisplay-Semibold';
  font-size: 44px;
}
.content p {
  color: rgba(255, 255, 255, 1);
  font-weight: 300;
}
.alert {
    line-height: 1.375rem;
}
.alert-outline-danger {
    border-color: #ff4c51;
    color: #ff4c51;
}
.alert {
    --bs-alert-bg: transparent;
    --bs-alert-padding-x: 0.9375rem;
    --bs-alert-padding-y: 0.6875rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-color: inherit;
    --bs-alert-border-color: transparent;
    --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
    --bs-alert-border-radius: var(--bs-border-radius);
    --bs-alert-link-color: inherit;
    position: relative;
    padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    margin-bottom: var(--bs-alert-margin-bottom);
    color: var(--bs-alert-color);
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
    border-radius: var(--bs-alert-border-radius);
}


@media only screen and (max-width: 768px) {
   .main-wrapper .card {
  
  padding: 80px 60px 80px 60px;
  
} 

.content {
 display: none;
}



}