* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #001f3f, #79a7d3);
}
.container {
  display: flex;
  width: 800px;
  height: 500px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
  background: white;
}

.left-panel {
  flex: 1;
  background: linear-gradient(135deg, #023e8a, #00b4d8);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.left-panel h2 {
  font-size: 32px;
  line-height: 1.5;
}

.left-panel span {
  font-weight: 300;
  font-size: 24px;
}

.left-panel strong {
  font-size: 28px;
}

.right-panel {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-panel h2 {
  color: #1e004d;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-bottom: 5px;
  color: #333;
}

form input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.login-btn {
  padding: 10px;
  background: linear-gradient(135deg, #6f0bbd, #9b26af);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.login-btn:hover {
  background: linear-gradient(135deg, #5c0aa0, #831d94);
}

.forgot {
  margin-bottom: 15px;
  font-size: 12px;
  text-align: right;
  text-decoration: none;
  color: #6f0bbd;
}

.signup-link {
  font-size: 12px;
  margin-top: 20px;
  text-align: center;
}

.signup-link a {
  color: #6f0bbd;
  text-decoration: none;
}

.custom-select {
  width: 200px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  font-size: 16px;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-select:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: #333;
}

/* Container for form group */
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Label styling */
.form-group label {
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 500;
}

/* Stylish select box */
.styled-select {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  font-size: 16px;
  appearance: none; /* Removes default arrow in some browsers */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10'%3E%3Cpath fill='%23333' d='M7 10L0 0h14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.styled-select:focus {
  border-color: #007bff;
  outline: none;
}
