:root {
  --dark-blue: #2c2d65;
  --input-bg: #f9f9f9;
  --border-gray: #ccc;
  --hint-color: #888;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.form-container {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: left;
}

.form-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-logo {
    width: 55px;
    height: 74px;
    margin-bottom: 10px;
  }

.form-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form-title {
  color: var(--dark-blue);
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
}

.input-container,
.phone-input-container {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--input-bg);
  border: 1px solid var(--border-gray);
  border-radius: 5px;
  padding: 8px;
}

.input-container input,
.phone-input-container input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  background-color: transparent;
}

.input-icon {
  position: absolute;
  right: 10px;
  width: 20px;
  height: 20px;
}

.country-code {
  margin-right: 5px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

.form-group input::placeholder {
  color: var(--hint-color);
}

.form-check {
  text-align: left;
  margin-bottom: 15px;
  align-items: center;
  display: flex;
}

.form-check input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

.form-check label {
  color: #5C5B5B;
  font-family: Poppins;
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-check a {
  color: #2c2d65;
  text-decoration: underline;
}

.hint {
  color: var(--hint-color);
  font-size: 10px;
  margin-top: 5px;
  display: block;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  color: #fff;
  border: none;
  border-radius: 8px;
  background: var(--dark-blue);
  font-size: 16px;
  cursor: pointer;
  margin: 15px 0;
}

.submit-btn:hover {
  background-color: #4849a6;
}

.submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
#loading-indicator {
  text-align: center;
  padding: 10px;
  font-size: 16px;
  color: #555;
}
