.jurista-form {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: #f7f7fb;
}

.jurista-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(27, 39, 51, 0.1);
  text-align: center;
}

.jurista-card h2 {
  margin: 0 0 12px;
  font-size: 28px;
  color: #1f2a3a;
}

.jurista-subtitle {
  margin-bottom: 20px;
  color: #4f5b6b;
  font-size: 16px;
}

.jurista-secondary-button {
  display: inline-block;
  margin-bottom: 24px;
  padding: 10px 22px;
  border-radius: 8px;
  background: #6f3ff5;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.jurista-label {
  display: block;
  text-align: left;
  font-size: 14px;
  color: #5a6575;
  margin-bottom: 14px;
}

.jurista-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e4e7ee;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 15px;
}

.jurista-input:focus {
  outline: none;
  border-color: #6f3ff5;
  box-shadow: 0 0 0 3px rgba(111, 63, 245, 0.15);
}

.jurista-button {
  width: 100%;
  margin-top: 10px;
  background: #6f3ff5;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.jurista-button:hover {
  background: #5b2fe0;
}

.jurista-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #5a6575;
  margin-bottom: 10px;
}

.jurista-required {
  color: #ef4444;
  margin-left: 4px;
}

.jurista-footer {
  margin-top: 16px;
  font-size: 13px;
  color: #7a8798;
}

.jurista-link {
  color: #6f3ff5;
  text-decoration: none;
  font-weight: 500;
}

.jurista-messages {
  margin-bottom: 14px;
}

.jurista-error,
.jurista-success {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.jurista-error {
  background: #fdecea;
  color: #b42318;
}

.jurista-success {
  background: #ecfdf3;
  color: #027a48;
}

.jurista-loader {
  display: none;
  margin: 12px auto 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #d4c7ff;
  border-top-color: #6f3ff5;
  animation: jurista-spin 1s linear infinite;
}

.jurista-loader.is-active {
  display: block;
}

@keyframes jurista-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 600px) {
  .jurista-card {
    padding: 32px 24px;
  }
}
