@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
body {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Figtree", sans-serif;
}
.logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 300px;
}
.signin-container {
  width: 100%;
  max-width: 400px;
  text-align: center;
  padding: 20px;
}
.title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
.description {
  color: #333;
  margin-bottom: 40px; /* This was 30px in the second block, I've kept the first one */
  text-align: center;
  line-height: 1.5;
}
.form-label {
  margin-bottom: 8px;
  display: block;
  text-align: left;
}
.email-input-container {
  position: relative;
  margin-bottom: 30px;
}
.email-input {
  width: 100%;
  padding: 12px 15px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 6px;
}
.email-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #385ef6;
}
.continue-btn {
  width: 100%;
  padding: 12px;
  background-color: #191919;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  margin-bottom: 30px;
  cursor: pointer;
}
.return-btn {
  width: 100%;
  padding: 12px;
  background-color: #eeeeee;
  border-color:  #191919;
  color: #191919;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  margin-bottom: 30px;
  cursor: pointer;
}

.options-link {
  color: #0081ff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.options-link svg {
  margin-right: 6px;
}
.input-container {
  position: relative;
  margin-bottom: 20px;
}
.form-input {
  width: 100%;
  padding: 12px 15px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 6px;
}
.form-input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #385ef6;
}
.error-message {
  background-color: #fff8f8;
  border-left: 3px solid #ff6b6b;
  padding: 12px;
  margin-bottom: 30px;
  text-align: left;
  border-radius: 0 6px 6px 0;
}
.optional-label {
  color: #777;
  font-size: 12px;
  margin-left: 5px;
}

.container {
  width: 100%;
  max-width: 400px;
  text-align: center;
  padding: 20px;
}
.info-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: left;
}
.info-item {
  margin-bottom: 12px;
}
.info-label {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.info-value {
  color: #333;
}
.back-btn {
  width: 100%;
  padding: 12px;
  background-color: #191919;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  margin-bottom: 30px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.back-btn:hover {
  background-color: #333;
  color: white;
}
.success-icon {
  width: 60px;
  height: 60px;
  background-color: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg {
  color: white;
}
.ok-btn {
  background-color: #191919;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  padding: 10px 40px;
  margin-bottom: 30px;
  cursor: pointer;
}
.help-text {
  color: #777;
  font-size: 14px;
  margin-top: 30px;
}
.help-link {
  color: #4CAF50;
  text-decoration: none;
}

@media screen and (max-width:767px) {

img.logo{ width:100% }

}