/***** Container & Card *****/
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* ensures full vertical center */
  background-color: #f5f5f5; /* Light gray background */
}
.card {
  width: 400px;
  background: #fff;
  padding: 30px 35px 35px 35px; /* top-right-bottom-left */
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
}
/***** Logo *****/
.logo {
  display: block;
  margin: 0 auto 15px auto;
  width: 180px; /* Adjust as needed */
}
/***** Title & Subtitle *****/
.title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 14px;
  line-height: 1.4;
  color: #555;
  margin-bottom: 18px;
}
/***** Input Fields *****/
.input {
  width: 100%;
  padding: 14px;
  border-radius: 24px; /* Rounded shape like the screenshot */
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  background-color: #fafafa; /* subtle background */
  margin-bottom: 15px;
}
.input:focus {
  border-color: #ffa500; /* matches orange button color */
}
.inputError {
  border-color: #d90000; /* Red border on error */
  background-color: #ffe5e5; /* Light red background on error */
}
/***** Buttons *****/
.primaryButton {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #ffa500; /* Orange button */
  border-radius: 24px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 5px; /* small spacing from input */
}
.primaryButton:hover {
  background-color: #e69500; /* darker orange */
}
/***** Error Text *****/
.errorText {
  color: #d90000;
  font-size: 13px;
  text-align: left;
  margin-top: -12px;
  margin-bottom: 15px;
}
/***** Required Label (Step 3) *****/
.requiredLabel {
  color: #d90000;
  font-size: 12px;
  text-align: left;
  margin-top: -5px;
  margin-bottom: 10px;
}
.errorIcon {
  font-size: 11px;
}
/***** Options (Step 2) *****/
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.checkbox {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #444;
}
.checkbox input {
  margin-right: 5px;
  cursor: pointer;
}
.forgotLink {
  font-size: 13px;
  color: #0066c0;
  text-decoration: none;
  font-weight: 500;
}
.forgotLink:hover {
  text-decoration: underline;
}
/***** Social Login *****/
.socialLogin {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px; /* space between buttons */
}
.googleButton,
.facebookButton {
  flex: 1;
  border: none;
  color: #fff;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.googleButton {
  background-color: #db4437; /* Google Red */
}
.googleButton:hover {
  background-color: #c33c2f;
}
.facebookButton {
  background-color: #3b5998; /* Facebook Blue */
}
.facebookButton:hover {
  background-color: #2e4270;
}
/***** Divider for Social Login *****/
.dividerContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
.divider {
  flex: 1;
  height: 1px;
  background-color: #ddd;
  margin: 0 5px;
  border: none;
}
.dividerText {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}
/***** Step 2 Profile Icon *****/
.profileIcon {
  width: 90px;
  height: 90px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  position: relative;
}
.profileIconInner {
  width: 50px;
  height: 50px;
  background-color: #bbb;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 20px;
  /* Simple placeholder for user silhouette */
}
.userEmail {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 18px;
}
/***** Step 3 - Input Wrapper for name field *****/
.inputWrapper {
  margin-bottom: 12px;
}
/***** Note Text *****/
.note {
  font-size: 12px;
  color: #777;
  margin-top: 15px;
}
/***** Help Link *****/
.helpLink {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #007bff;
  text-decoration: none;
}
.helpLink:hover {
  text-decoration: underline;
}
/***** Footer *****/
.footer {
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}