/* Reset e Base */
html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Estilos para Formulários */
form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: var(--app-surface, white);
  border-radius: 12px;
  box-shadow: var(--app-shadow, 0 1px 3px rgba(0, 0, 0, 0.05));
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid var(--app-border, #e9ecef);
  color: var(--app-text, #2c3e50);
}

/* Responsividade */
@media (max-width: 768px) {
  form {
    width: 95%;
    padding: 15px;
    gap: 1rem;
  }
}

/* Layout de dois columns para formulários quando necessário */
@media (min-width: 769px) {
  .form-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* Labels */
label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--app-text, #2c3e50);
  display: block;
  font-size: 0.95rem;
}

/* Botões */
.button {
  background-color: #c92a2a;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.button:hover {
  background-color: #a01c1c;
  box-shadow: 0 2px 8px rgba(201, 42, 42, 0.2);
}

.button:active {
  transform: translateY(1px);
}

.button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

/* Teste Login */
.teste-login {
  font-family: "Roboto", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  color: #c92a2a;
  text-align: center;
  font-weight: 800;
  margin: 0 0 2rem 0;
}


.move-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

/* Botões do Modal */
.move-form-actions .btn-primary {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.move-form-actions .btn-primary:hover {
    filter: brightness(0.9);
}