/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/*
 *= require_self
 *= require_tree .
*/


.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.logo {
  height: 8em;
  width: auto;
}

.title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  color: #007bff;
  font-size: 4em;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  
  font-style: normal;
}

.display-content {
	display: block;
	/* justify-content: center; */
	padding: 40px;
	/* display: inline-block; */
	text-align: center;
}

.footer {
text-align: center;
}
.footerlogo {
  font-family: 'Courier New', monospace;
  font-size: 20px;
}

.body-copy {
  font-family: 'Courier New', monospace;
}
/* estilos.css */
.contenedor-boton {
  display: flex;
  justify-content: center;
  margin-top: 40px; /* opcional para separación */
}

.boton-interesado {
	background: #0084ff;
	border-radius: 12px;
	color: white;
	font-size: 20px;
	padding: 20px 40px;
	text-decoration: none;
	display: inline-block;
	transition: background 0.3s ease;
	/* margin-left: -343%; */
	margin-top: 40px;
	margin-bottom: 43px;
}
.boton-interesado:hover {
  background: #005fcc;
}

/* === Estilos para formularios de Registro / Login === */

.form-title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #007bff;
}

.form-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.form-input {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: #007bff;
  outline: none;
}

.form-button {
  width: 100%;
  padding: 0.8rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-button:hover {
  background: #005fcc;
}

.users-table {
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
}

.users-table th,
.users-table td {
  padding: 8px 12px;
  border: 1px solid #ccc;
}

