/* layout-styles.css */
/* Asegúrate de enlazar este archivo en Home.html */

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.container img {
  width: 80%;
  max-width: 800px;
  height: auto;
}

.btn-register {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #f7485e;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn-register:hover {
  background-color: #d13a51;
}