* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #3b2313;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-container {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

.description-section {
  flex: 1;
  padding: 50px 40px;
  background-color: white;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #f0f0f0;
}

.description-section h1 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #333;
}

.description-section p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #666;
}

.role-descriptions {
  margin-top: 20px;
}

.role-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  /* cursor: pointer; */
  border: 2px solid transparent;
}

.role-card h3 {
  display: flex;
  align-items: center;
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.role-card h3 i {
  margin-right: 15px;
  font-size: 24px;
  color: #3b2313;
}

.role-card p {
  font-size: 15px;
  margin-bottom: 0;
  color: #666;
}

.login-section {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-header {
  margin-bottom: 30px;
  text-align: center;
}

.login-header h2 {
  color: #333;
  font-size: 26px;
  margin-bottom: 10px;
}

.login-header p {
  color: #666;
  font-size: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

.form-group input {
  width: 100%;
  padding: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
  background-color: #f8f9fa;
}

.form-group input:focus {
  border-color: #4a6bdf;
  outline: none;
  box-shadow: 0 0 0 2px rgba(74, 107, 223, 0.1);
  background-color: white;
}

.password-container {
  position: relative;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background-color: #3b2313;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.login-btn:hover {
  background-color: #0095a8;
}

.login-btn:active {
  transform: translateY(1px);
}

/* Radio Button Styles */
.radio-label-title {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

.radio-group {
  display: flex;
  gap: 30px;
  align-items: center;
}

.radio-option {
  display: flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: #333;
  font-weight: 400;
  user-select: none;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
  flex-shrink: 0;
  box-sizing: border-box;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: #3b2313;
  background-color: #3b2313;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
  background-color: white;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    max-width: 450px;
  }

  .description-section {
    padding: 30px;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .description-section h1 {
    font-size: 26px;
  }

  .description-section p {
    font-size: 15px;
  }

  .role-card h3 {
    font-size: 18px;
  }

  .role-card h3 i {
    font-size: 22px;
  }

  .login-section {
    padding: 30px;
  }
}
