@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

main {
  display: flex;
  min-height: 100vh;
  position: relative;
  width: 100%;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.form-container {
  min-height: 100vh;
  padding: 2rem 2rem;
  background: #fff;
  position: relative;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .form-container {
    padding: 4rem 6rem;
  }
}
@media (min-width: 1200px) {
  .form-container {
    padding: 4rem 8rem;
  }
}
.form-container .logo {
  margin-bottom: 2rem;
}
.form-container .logo img {
  max-width: 160px;
  height: auto;
}
@media (min-width: 768px) {
  .form-container .logo img {
    max-width: 180px;
  }
}
.form-container h1 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .form-container h1 {
    font-size: 1.75rem;
  }
}
.form-container .subtitle {
  text-align: center;
  color: #757575;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .form-container .subtitle {
    font-size: 0.9rem;
  }
}
.form-container form {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.form-group {
  margin-bottom: 0.5rem;
  position: relative;
}
.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
}
.form-group label::after {
  content: "*";
  color: #dc3545;
  margin-left: 0.25rem;
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .form-group label {
    font-size: 0.9rem;
  }
}
.form-group input, .form-group select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
}
.form-group input::-moz-placeholder, .form-group select::-moz-placeholder {
  color: #9b9b9b;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.7;
}
.form-group input::placeholder, .form-group select::placeholder {
  color: #9b9b9b;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.7;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: #0066FF;
}
.form-group input:focus::-moz-placeholder, .form-group select:focus::-moz-placeholder {
  opacity: 0.5;
}
.form-group input:focus::placeholder, .form-group select:focus::placeholder {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .form-group input, .form-group select {
    padding: 0.7rem;
  }
}
.form-group .error-message {
  display: none;
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
.form-group .error-message.active {
  display: block;
}

.side-image {
  position: fixed;
  right: 0;
  top: 0;
  width: 55%;
  height: 100vh;
  background-color: #F5F5F5;
  z-index: 1;
}
@media (max-width: 1100px) {
  .side-image {
    display: none;
  }
}
.side-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .form-container {
    max-width: 700px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .form-container {
    padding: 2rem;
  }
  .form-container .logo img {
    max-width: 140px;
  }
  .form-container h1 {
    font-size: 1.4rem;
  }
  .form-container .subtitle {
    font-size: 0.8rem;
  }
  .form-group {
    margin-bottom: 0.4rem;
  }
  .form-group label {
    font-size: 0.8rem;
  }
  .form-group input, .form-group select {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
}
@media (max-height: 800px) and (min-width: 992px) {
  .form-container {
    padding: 2rem 4rem;
  }
  .form-container .logo {
    margin-bottom: 1.5rem;
  }
  .form-container .logo img {
    max-width: 150px;
  }
  .form-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .form-container .subtitle {
    margin-bottom: 1rem;
  }
  .form-group {
    margin-bottom: 0.4rem;
  }
}
.form-container::-webkit-scrollbar {
  width: 8px;
}
.form-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.form-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.form-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media print {
  .side-image {
    display: none;
  }
  .form-container {
    padding: 0;
    width: 100%;
  }
}
input:invalid.touched, select:invalid.touched {
  border-color: #dc3545;
  background-color: #fff8f8;
}

.submit-btn {
  width: 100%;
  padding: 0.8rem;
  background-color: #0066FF;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
}
.submit-btn:hover {
  background-color: #005ce6;
}

.secondary-action {
  text-align: center;
  margin-top: 1rem;
}
.secondary-action p {
  color: #757575;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.secondary-btn {
  width: 100%;
  padding: 0.8rem;
  background-color: transparent;
  color: #0066FF;
  border: 1px solid #0066FF;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.secondary-btn:hover {
  background-color: rgba(0, 102, 255, 0.05);
}

.help-text {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.help-text .help-link {
  color: #0066FF;
  text-decoration: none;
}
.help-text .help-link:hover {
  text-decoration: underline;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  position: relative;
  width: 90%;
  max-width: 800px;
}

.modal-close {
  position: absolute;
  right: -15px;
  top: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  z-index: 1;
}
.modal-close:hover {
  background-color: #f5f5f5;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 1rem;
  }
}
.form-errors {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 4px;
  background-color: #fff8f8;
  border: 1px solid #dc3545;
  display: none;
}
.form-errors.active {
  display: block;
}
.form-errors .error-title {
  color: #dc3545;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-errors .error-title::before {
  content: "!";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: bold;
}
.form-errors .error-list {
  margin: 0;
  padding-left: 2rem;
  color: #dc3545;
  font-size: 0.9rem;
}
.form-errors .error-list li {
  margin-bottom: 0.25rem;
}
.form-errors .error-list li:last-child {
  margin-bottom: 0;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.form-options .remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
}
.form-options .remember-me input[type=checkbox] {
  width: auto;
  cursor: pointer;
}
.form-options .forgot-password {
  font-size: 0.9rem;
  color: #0066FF;
  text-decoration: none;
}
.form-options .forgot-password:hover {
  text-decoration: underline;
}

a.secondary-btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

@media (min-width: 1100px) {
  main {
    padding-right: 55%;
  }
}
.form-title {
  text-align: center;
}

.language-selector {
  margin-bottom: 1rem;
  text-align: center;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.language-selector label {
  display: inline-block;
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}
.language-selector select {
  width: 180px;
  padding: 0.7rem 2.5rem 0.7rem 1rem;
  border-radius: 6px;
  border: 1px solid #E0E0E0;
  background-color: white;
  font-size: 0.95rem;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.language-selector select:hover {
  border-color: #0066FF;
  background-color: #f8f9fa;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.language-selector select:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}
.language-selector select option {
  padding: 0.5rem;
  background-color: white;
  color: #333;
  font-size: 0.95rem;
}
.language-selector select option:hover {
  background-color: #f8f9fa;
}
.language-selector select option:checked {
  background-color: #e9ecef;
  font-weight: 500;
}
.language-selector select::-webkit-scrollbar {
  width: 8px;
}
.language-selector select::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.language-selector select::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.language-selector select::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}/*# sourceMappingURL=form.css.map */