.form-container {
  margin-top: 35px !important;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

h2 {
  color: #166534;
  margin: 10px 0;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

p,
.subtitle,
.fill-text,
.form-text {
  font-size: 14px;
  color: #6c757d;
  /* text-align: center; */
}

span.label-info {
  color: #9ca3af;
  font-weight: 500;
  font-size: 10px;
}

/* Logo */
.logo {
  text-align: center;
  margin-bottom: 15px;
}

.logo img {
  width: 150px;
  padding-right: 20px;
}

/* Input Fields */
.input-container {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.input-container input,
.form-control-auth {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  padding: 10px;
}

.input-container input:has(+ .icon) {
  padding: 10px 40px;
}

.input-container .icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
}

/* Upload Area */
.upload-area {
  border: 1px dashed #ccc;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  margin-top: 5px;
  cursor: pointer;
}

.upload-icon {
  font-size: 24px;
  color: #555;
}

/* Buttons */

.create-btn {
  width: 100%;
  background: #16a34a;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.btn:hover,
.create-btn:hover {
  background: #006400;
  color: white;
}

.btn-success {
  background: #00a651;
  border-color: #00a651;
}

.btn-success:hover {
  background: #009148;
}

.btn-outline-secondary {
  border-color: #dee2e6;
  color: #212529;
  background: white;
}

/* .btn-outline-secondary:hover {
  background: #f8f9fa;
} */

/* Options (Checkbox & Links) */
.options {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  flex-wrap: wrap;
  row-gap: 5px;
}

.options label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
}

.options label input[type="checkbox"] {
  margin: 0;
}

.options a,
.bottom-text a {
  color: #16a34a;
  text-decoration: none;
  font-weight: bold;
}

.options a:hover,
.bottom-text a:hover {
  text-decoration: underline;
}

/* Divider */
.divider {
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
  margin: 0 10px;
}

/* Social Login */
.social-login {
  display: flex;
  justify-content: space-between;
}

.social-btn {
  width: 48%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  background: white;
}

.bottom-text p {
  margin-top: 10px;
}

.social-btn img {
  width: 18px;
  margin-right: 8px;
}

/* Checkbox */
.form-check-input:checked {
  background-color: #00a651;
  border-color: #00a651;
}

.star {
  font-size: 15px;
  color: red;
  /* gap: 6px; */
}

.form-control-auth:focus {
  color: #212529;
  background-color: #fff;
  border-color: #06ca65 !important;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(109, 253, 13, 0.25);
}

.card {
  border: none !important;
}

.form-label {
  color: #374151;
  font-size: 14px;
}
