/* Tjekleasing Form Styles */
.tjekleasing-form-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tjekleasing-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.tjekleasing-form-title {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.tjekleasing-form-subtitle {
  color: #7f8c8d;
  font-size: 1.2rem;
  margin: 0;
}

.tjekleasing-form {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tjekleasing-form-field {
  margin-bottom: 30px;
}

.tjekleasing-form-field:last-of-type {
  margin-bottom: 40px;
}

.tjekleasing-form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.1rem;
}

.tjekleasing-form-required {
  color: #e74c3c;
}

.tjekleasing-form-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #ecf0f1;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
  background: white;
}

.tjekleasing-form-input:hover {
  border-color: #bdc3c7;
}

.tjekleasing-form-input:focus {
  border-color: #3498db;
  outline: none;
}

.tjekleasing-form-input.error {
  border-color: #e74c3c;
  transition: border-color 0.3s;
}

.tjekleasing-form-file-info {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #7f8c8d;
}

.tjekleasing-form-file-info.success {
  color: #27ae60;
}

.tjekleasing-form-submit-container {
  text-align: center;
}

.tjekleasing-form-submit-btn {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border: none;
  padding: 15px 50px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.tjekleasing-form-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.tjekleasing-form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.tjekleasing-form-success {
  display: none;
  text-align: center;
  padding: 30px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  margin-top: 20px;
}

.tjekleasing-form-success-title {
  color: #155724;
  margin-bottom: 10px;
}

.tjekleasing-form-success-message {
  color: #155724;
  margin: 0;
}

.error-message {
  display: none;
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 5px;
  font-weight: 500;
}

/* Responsive design */
@media (max-width: 768px) {
  .tjekleasing-form {
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
  }

  .tjekleasing-form-title {
    font-size: 2rem;
  }

  .tjekleasing-form-subtitle {
    font-size: 1rem;
  }
}
