/* Styles for both login and upload pages */
.login {
  background-color: #E2FAF7;
  background-size: cover;
  background-image: url('../assets/bg-login.png');
}
.step-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full height for vertical centering */
  padding: 0 15px;
}
.step-title {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
}
.step-title span {
  display: block;
  color: #1FCBCC;
}
.login-step {
  background-color: #ffffff;
  padding: 20px 20px 30px 20px;
  border-radius: 20px;
  width: 100%;
  max-width: 436px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  margin-bottom: 5px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 26px;
  padding-left: 20px;
  width: calc(100% - 20px);
  height: 40px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.form-group input[type="text"]::placeholder,
.form-group input[type="password"]::placeholder,
.form-group input[type="email"]::placeholder {
  font-weight: 500;
  font-size: 14px;
  opacity: 0.4;
}
button.btn {
  border-radius: 100px;
  padding: 10px 25px;
  height: 40px;
  background-color: #96E269;
  color: #000;
  font-size: 16px;
  border: none;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  cursor: pointer;
}

.upload-step .form-group input[type="file"] {
  padding: 5px; /* Adjust file input padding */
}
