/* src/frontend/login/registro.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: url('../../login/img/fondo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.contenedor-registro {
  display: flex;
  width: 90%;
  max-width: 1100px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Lado del formulario */
.registro-form {
  flex: 1;
  padding: 40px;
}

.logo-login {
  width: 100px;
  display: block;
  margin: 0 auto 20px auto;
}

.registro-form h2 {
  text-align: center;
  margin-bottom: 30px;
}

.registro-form form input[type="text"],
.registro-form form input[type="email"],
.registro-form form input[type="password"],
.registro-form form input[type="number"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  background-color: #222;
  color: white;
}

.registro-form form input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #654321;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.registro-form form input[type="submit"]:hover {
  background-color: #8b5e3c;
}

/* Frase a la derecha */
.frase-lateral {
  flex: 1;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.frase-lateral h3 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.frase-lateral p {
  font-size: 1.2em;
  font-style: italic;
}

/* Botón de inicio */
.btn-inicio {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  text-decoration: none;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.btn-inicio:hover {
  background-color: #654321;
}

/* Solo aplica estilo a los inputs del formulario */
form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="number"] {
  background-color: white !important;
  color: #333 !important;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 12px;
}

/* Placeholder más suave */
form input::placeholder {
  color: #666 !important;
}