.registration-end-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
}

.end-header {
  font-size: 25px;
  font-weight: 500;
  color: #333;
  padding: 20px 10px 0px 10px;
  margin-top: -90px;
  margin-bottom: 30px;
}


.end-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
}


.end-image {
  height: 240px;
  width: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-top: -50px;
}


.end-text-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}


.end-text-body {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #444;
}


.end-text-footer {
  display: flex;
  gap: 25px;
  align-items: center;
  max-width: 300px;
  width: 100%;
}


.end-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  padding: 12px 25px;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border: solid #333 1.5px;
  color: #333;
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
}

.end-button.primary {
  background-color: rgb(0, 72, 167);
  padding-block: 13px;
  color: white;
  border: none;
}



.end-button.secondary {
  background-color: rgb(251, 251, 251);
}

.end-button span {
  position: relative;
  z-index: 2;
  transition: 0.2s ease;
}

.end-button.secondary:hover span {
  color: white;
}

.end-button.secondary:hover {
  border-color: #555;
}

.end-button.secondary:hover::before,
.end-button.primary:hover::before {
  right: 0px;
}


.end-button.secondary::before,
.end-button.primary::before {
  content: '';
  position: absolute;
  inset: 0px;
  right: 100%;
  background-color: #555;
  transition: 0.4s ease;
}

.end-button.primary::before {
  background-color: #333;
}







.form-footer {
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #555;
  font-weight: 500;
  margin-top: 35px;
  background-color: rgb(251, 251, 251);
  border-radius: 30px;
  border: solid rgb(241, 241, 241) 1px;
  box-shadow: 0px 1.5px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 20px;
  left: 20px;
  gap: 10px;
  transition: 0.3s ease;
  animation-name: copyright-animation;
  animation-timing-function: ease;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.form-footer img {
  height: 15px;
  width: 15px;
  object-fit: contain;
}

@keyframes copyright-animation {
  0% {
    transform: translateY(0px);
    animation-timing-function: ease;
  }

  50% {
    transform: translateY(-6px);
    animation-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
  }

  100% {
    transform: translateY(0px);
    animation-timing-function: ease;
  }
}


@media (max-width: 768px) {

  .end-image-container {
    padding: 30px 20px;
  }

  .end-button {
    border-width: 1px;
  }

  .form-footer {
    left: -5px;
    border-radius: 0px 30px 30px 0px;
    padding-block: 11px;
  }
}