.finexo-form-container {
  max-width: 500px;
  margin: 30px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.finexo-logo {
  display: block;
  max-width: 180px;
  margin: 0 auto 20px;
}

.finexo-form-container h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.finexo-loan-form select,
.finexo-loan-form input[type="text"],
.finexo-loan-form input[type="email"],
.finexo-loan-form input[type="tel"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
}

.finexo-note {
  background-color: #f1f8ff;
  padding: 10px;
  border-left: 4px solid #0073e6;
  font-size: 14px;
  margin-bottom: 20px;
}

.sp-checks label {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  margin-bottom: 10px;
}

.sp-checks input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
}

.sp-checks a {
  color: #0073e6;
  text-decoration: underline;
}

.finexo-loan-form button {
  width: 100%;
  background-color: #ff4d00;
  color: white;
  border: none;
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.finexo-loan-form button:hover {
  background-color: #e04300;
}


