/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f5f5f5;
}

/* Espaciado adicional para separar el encabezado */
.container {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
  margin-bottom: 50px;
  margin-top: 100px; /* Espaciado entre el encabezado y el contenedor */
}

.header-section {
  margin-bottom: 40px; /* Espaciado entre el encabezado y el formulario */
}

/* Avatar */
.avatar {
  background-color: #28a745;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.avatar i {
  color: #fff;
  font-size: 40px;
}

/* Títulos */
h2 {
  color: #28a745;
  margin: 0 0 20px;
}

/* Sección del formulario */
.form-section {
  display: flex;
  flex-direction: column;
}

.input-group {
  margin-bottom: 15px;
  position: relative;
}

.input-group input {
  width: 100%;
  padding: 10px 10px 10px 40px;
  border: 1px solid #ccc;
  border-radius: 25px;
  outline: none;
}

.input-group i {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #ccc;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.options label {
  display: flex;
  align-items: center;
  color: #666;
}

.options input {
  margin-right: 5px;
}

.options a {
  color: #28a745;
  text-decoration: none;
}

.options a:hover {
  text-decoration: underline;
}

.btn {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  width: 100%;
}

.btn:hover {
  background-color: #218838; /* Cambio de color al pasar el ratón */
}

.create-account {
  margin-top: 20px;
  color: #28a745;
  text-decoration: none;
}

.create-account:hover {
  text-decoration: underline;
}

.divider {
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

/* Pie de página */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  width: 100%;
}

footer p {
  margin: 0;
}

footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

footer .footer-links li {
  display: inline-block;
  margin: 0 10px;
}

footer .footer-links a {
  color: #fff;
  text-decoration: none;
}

footer .footer-links a:hover {
  text-decoration: underline;
}

.social-links a {
  font-size: 24px; /* Tamaño de los iconos */
  color: #ffffff; /* Color predeterminado */
  margin: 0 10px; /* Espaciado entre iconos */
  text-decoration: none;
}

.social-links a:hover {
  color: #28a745; /* Cambia de color cuando el cursor pasa sobre el icono */
}
body {
  font-family: 'Oswald', sans-serif;
}
nav ul li a {
  color: black; /* Color de texto normal */
  text-decoration: none; /* Quita el subrayado */
  padding: 10px;
  display: inline-block;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

nav ul li a:hover {
  color: white; /* Cambia el color del texto al pasar el mouse */
  background-color: #ff0000; /* Cambia el fondo al pasar el mouse */
  border-radius: 5px; /* Bordes redondeados */
}

#error-message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

#error-message.success {
    background-color: #E8F5E9;
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

#error-message.error {
    background-color: #ffebee;
    color: #ff4444;
    border: 1px solid #ff4444;
}

#recoverPassword {
    color: #2196F3;
    text-decoration: none;
    transition: color 0.3s ease;
}

#recoverPassword:hover {
    color: #1976D2;
    text-decoration: underline;
}

.session-warning {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}
