/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
}

body {
  background-color: black;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-container {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .signup-container {
    flex-direction: row;
  }
}

/* Left Section Styles */
.left-section {
  width: 100%;
  background: linear-gradient(to bottom, #9333ea, #000000);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .left-section {
    width: 50%;
  }
}

.left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.company-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.main-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.subtitle {
  text-align: center;
  margin-bottom: 2rem;
}

.steps-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: white;
  color: black;
  font-weight: bold;
  margin-right: 0.75rem;
}

/* Right Section Styles */
.right-section {
  width: 100%;
  background-color: #18181b; /* zinc-900 */
  padding: 2rem;
}

@media (min-width: 768px) {
  .right-section {
    width: 50%;
  }
}

.form-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: #a1a1aa; /* gray-400 */
  margin-bottom: 1.5rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"] {
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #52525b; /* gray-600 */
  background-color: #27272a; /* zinc-800 */
  color: white;
  width: 100%;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="tel"]::placeholder {
  color: #a1a1aa; /* gray-400 */
}

.description {
  font-size: 0.75rem;
  color: #a1a1aa; /* gray-400 */
}

.checkbox-group {
  margin-top: 0.5rem;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
}

.link {
  color: #60a5fa; /* blue-400 */
  text-decoration: none;
}

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

.submit-button {
  width: 100%;
  padding: 0.75rem;
  background-color: white;
  color: black;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1rem;
}

.submit-button:hover {
  background-color: #e5e5e5; /* gray-200 */
}

/* Photo Upload Styles */
.photo-upload-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.photo-preview {
  position: relative;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  border-radius: 50%;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-button-container {
  display: flex;
  width: 100%;
  justify-content: center;
}

.upload-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  background-color: #27272a; /* zinc-800 */
  border: 1px solid #52525b; /* gray-600 */
  border-radius: 0.375rem;
}

.upload-button:hover {
  background-color: #3f3f46; /* zinc-700 */
}

input[type="file"] {
  display: none;
}

.upload-icon {
  width: 1rem;
  height: 1rem;
}

.error-message {
  color: #ef4444; /* red-500 */
  font-size: 0.75rem;
  min-height: 1rem;
}

.hidden {
  display:none;
}
.admin-button {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

.admin-button:hover {
  background-color: #0056b3;
}
/* Style for select dropdown */
select {
padding: 0.75rem;
border-radius: 0.375rem;
border: 1px solid #52525b; /* gray-600 */
background-color: #27272a; /* zinc-800 */
color: white;
width: 100%;
cursor: pointer;
}

select:focus {
outline: none;
border-color: #60a5fa; /* blue-400 */
}

/* Dropdown arrow color */
select::-ms-expand {
display: none;
}

select option {
background-color: #27272a;
color: white;
}
