/* Body gradient animation */
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(
    270deg,
    #ffffff,
    #f8f9fa,
    #f0f4f8,
    #e8f0f2,
    #f5f7fa
  );
  background-size: 800% 800%;
  animation: gradientShift 35s ease infinite;
  font-family: "Poppins", sans-serif;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.signup-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.signup-container a {
  text-decoration: none;
  color: black;
}

.signup-container .signup-frame {
  position: relative;
  width: 420px;
  height: 637px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 137, 123, 0.2);
  padding: 25px;
  margin-top: 200px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.signup-container .signup-frame .signup-top {
  display: flex;
  flex-direction: column;
}
.signup-container .signup-frame .signup-top span {
  display: flex;
  justify-content: center;
  color: #00897b;
  font-size: 28px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 137, 123, 0.2);
  margin-bottom: 20px;
}
.signup-container .signup-frame .signup-top .link,
.signup-container .signup-frame .signup-top .link1 {
  display: none;
}

.signup-container .signup-frame .sign-input-frame {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}

.signup-container .sign-input-frame .sign-up-frame {
  position: relative;
  margin-top: 15px;
  width: 49%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.signup-container .sign-up-frame label {
  margin-bottom: 0px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #00897b;
  font-weight: 600;
}

.signup-container .sign-up-frame input {
  position: relative;
  margin-top: 10px;
  padding-left: 20px;
  width: 100%;
  height: 55px;
  background: #f6f5f5;
  border: 1px solid #dddddd;
  border-radius: 8px;
}

.signup-container .media-frame {
  position: relative;
  margin-top: 15px;
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.signup-container .media-frame .upload-img-frame {
  position: relative;
  width: 275px;
  height: 93%;
  display: flex;
  border-radius: 15px;
}

.signup-container .upload-img-frame .delete-img {
  position: absolute;
  width: 37px;
  height: 37px;
  right: 5%;
  top: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  border-radius: 8px;
}

.signup-container .media-frame .upload-container {
  position: relative;
  margin-left: 30px;
  width: 75%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.signup-container .media-text {
  font-family: "GT Walsheim Pro";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #00897b;
  font-weight: 600;
}

.signup-container .file-box input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.signup-container .file-box label {
  margin-bottom: 0px;
  width: 138px;
  height: 55px;

  display: flex;
  justify-content: center;
  align-items: center;
  background: #00897b;
  border-radius: 0px 8px 8px 0px;
  font-family: "GT Walsheim Pro";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #ffffff;
}

.signup-container .file-box .upload-name {
  position: relative;
  padding: 20px;
  width: 85%;
  height: 55px;
  display: flex;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px 0px 0px 8px;
}

.signup-container .thumbnail-desc {
  margin-top: 25px;
  font-family: "GT Walsheim Pro";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #4f547b;
}

/* Signup button */
.signup-container .signup-btn {
  background-color: #00897b !important;
  border-color: #00897b !important;
  color: white !important;
  transition: background-color 0.3s ease;
}

.signup-container .signup-btn:hover {
  background-color: #006d61 !important;
  border-color: #006d61 !important;
}

/* Navigation links */
.signup-container a {
  color: #00897b;
  font-weight: 600;
  transition: all 0.3s ease;
}

.signup-container .link-home,
.signup-container .link-login {
  color: #00897b;
}

.signup-container .link-home:hover,
.signup-container .link-login:hover {
  color: #006d61;
  text-decoration: underline;
}
