* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary-color: #0056a4;
  --secondary-color: #f7941d;
  --text-color: #333;
  --light-gray: #f5f5f5;
  --border-color: #ddd;
}

body {
  background-color: var(--light-gray);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo span {
  color: var(--secondary-color);
}

.header-actions a {
  color: var(--primary-color);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

/* Main Content Styles */
.main-content {
  display: flex;
  min-height: calc(100vh - 130px);
  padding: 40px 0;
}

.signup-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .signup-container {
    flex-direction: row;
  }
}

.signup-left {
  flex: 1;
  background-color: var(--primary-color);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signup-right {
  flex: 1.2;
  padding: 40px;
}

.welcome-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.welcome-text p {
  margin-bottom: 30px;
  font-size: 1rem;
}

.features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background-color: white;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.signup-form h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
}

input,
select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus,
select:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

@media (min-width: 576px) {
  .form-row {
    flex-direction: row;
  }
}

.form-row .form-group {
  flex: 1;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

button:hover {
  background-color: #e08000;
}

.login-link {
  text-align: center;
  margin-top: 20px;
  font-size: 0.95rem;
}

.login-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Footer Styles */
footer {
  background-color: white;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-btn {
  padding: 10px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: background-color 0.3s;
  gap: 10px;
  font-weight: 500;
}

.google-btn {
  background-color: white;
  color: #555;
}

.facebook-btn {
  background-color: #3b5998;
  color: white;
  border-color: #3b5998;
}

/* Separators */
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}

.divider::before {
  margin-right: 10px;
}

.divider::after {
  margin-left: 10px;
}
