
/* Form styling */
.user-form {
/*  padding: 2rem 2.5rem; */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 400px;
  text-align: center;
	margin: auto;
}
.user-form2 {
  padding: 1rem 2.5rem 0 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 800px;
  text-align: center;
	align-content: center;
}

.user-form h2 {
  margin-bottom: 1.5rem;
}

/* Input groups */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  text-align: left;
}
.form-group2{
  margin-top: 1rem;
  text-align: center;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  border-color: #4f6ef7;
  outline: none;
}

.form-group input:disabled{
	color:#fff;
}


/* Responsive adjustments */
@media (max-width: 600px) {
  .user-form {
    padding: 1.5rem;
  }
  
  .text-banner h1 {
    font-size: 1.2rem;
  }
}

.cbx
{
  /* Double-sized Checkboxes */
  -ms-transform: scale(2); /* IE */
  -moz-transform: scale(2); /* FF */
  -webkit-transform: scale(2); /* Safari and Chrome */
  -o-transform: scale(2); /* Opera */
  transform: scale(2);
  padding: 10px;
	margin-right:1em;
}
.container1 {
  flex: 1; /* takes up remaining space */
  display: flex;
  justify-content: center;
  width: 100%;
}