* {
  box-sizing: border-box;
}
body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Standard */
}


body {
  font-family: 'Segoe UI', sans-serif;
  background: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  
    flex-direction: column;	
}

.login-container {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #111827;
}

.login-container input[type="text"],
.login-container input[type="email"],
.login-container input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0 1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background-color: #f9fafb;
  font-size: 1rem;
}

.login-container input[type="submit"] {
  width: 100%;
  padding: 0.75rem;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.login-container input[type="submit"]:hover {
  background: #1d4ed8;
}

select.cl {
	position: absolute;
	top: 5px;
	right: 5px;
	padding: 10px;
	border: solid 1px #f3f3f3;
}

.custom-select-wrapper {
  position: relative;
  width: 200px;
  font-family: sans-serif;
  position: absolute;
	top: 5px;
	right: 5px;
}

.custom-select {
  position: relative;
  cursor: pointer;
}

.custom-select .selected {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-select .options {
  display: none;
  position: absolute;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  top: 100%;
  left: 0;
  z-index: 10;
}

.custom-select .options div {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-select .options div:hover {
  background: #eee;
}

.custom-select.open .options {
  display: block;
}

.custom-select img {
  width: 20px;
  height: auto;
}
.question > label{
	width: 100%;
	display: flex;
	margin-bottom: 10px;
}
.question .fields{
	margin-bottom: 10px;
}
.loading {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	height: 100%;
	top: 0;
	display: none;
}
.loading img{
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100px;
}
.loading:before {
	content: "";
	background: rgba(0, 0, 0, .1);
	left: 0;
	top: 0;
	position: absolute;
	width: 100%;
	height: 100%;
}

.register_now{
	text-align: center;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    font-size: 13px;
}

#title{
	width: 100%;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0 1rem;
	border-radius: 12px;
    border: 1px solid #d1d5db;
}

.errormsg {
    color: #f00;
    text-align: left;
    margin-top: 0px !important;
}

textarea {
    width: 100%;
    height: 100px;
    border: solid 1px #dedede;
    border-radius: 10px;
    resize: none;
	padding: 5px;
}

.action-buttons {
  text-align: center;
  margin-top: 20px;
}

.btn.register-btn {
  background-color: #4CAF50;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn.register-btn:hover {
  background-color: #45a049;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.link-secondary {
  display: block;
  margin-top: 12px;
  font-size: 0.95em;
  color: #666;
  text-decoration: none;
}

.link-secondary:hover {
  text-decoration: underline;
}


.small-button-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.small-btn {
  background-color: #4CAF50;
  color: white;
  padding: 8px 16px;
  font-size: 0.9rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.small-btn:hover {
  background-color: #45a049;
}

.small-btn.alt {
  background-color: #888;
}

.small-btn.alt:hover {
  background-color: #666;
}
