/* Reset general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Estilo del body */
  body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7fb;
    color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  /* Contenedor del formulario */
  form {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  
  /* Logo */
  .logo-container {
    margin-bottom: 20px;
  }
  
  .logo-img {
    width: 80px;
    height: auto;
  }
  
  /* Etiquetas */
  label {
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
    text-align: left;
    color: #073D6B;
  }
  
  /* Inputs */
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #cfd9e3;
    border-radius: 8px;
    background-color: #f9fbfd;
    transition: border 0.3s;
  }
  
  input:focus {
    border-color: #073D6B;
    outline: none;
  }
  
  /* Botón */
  button {
    width: 100%;
    padding: 12px;
    background-color: #073D6B;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #055093;
  }
  
  /* Mensaje debajo del botón */
  .register-msg {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
  }
  
  .register-msg a {
    color: #073D6B;
    text-decoration: none;
    font-weight: bold;
  }
  
  .register-msg a:hover {
    text-decoration: underline;
  }
  