body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
}

h1 {
    font-size: xxx-large;
}

.container {
  margin-top: 6em;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  width: 30em;
  height: 33.5em;
}

.container:hover {
    box-shadow: 0 19px 21px rgba(0, 0, 0, 3);
}

.login-container input,
.login-container button {
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.5s ease;
    border: 1px solid #000;
}

.login-container input:focus,
.login-container button:focus {
    outline: none;
    border-color: #4CAF50;
}

.login-container input {
    width: 24em;
    height: 1.5em;
}

.login-container button {
    background-color: #411bc6;
    color: white;
    cursor: pointer;
    transition: background-color 0.5s ease;
    font-weight: bold;
    height: 3em;
    width: 27em;
}

.login-container button:hover {
    background-color: #677ed9;
}

.message {
    border-color: #fa5058;
    background-color: #fa5058;
    color: white;
    border-style: solid;
    border-width: 1px;
    border-radius: 8px;
    text-align: center;
    padding: 1rem;
}

.message.success {
    color: rgb(43, 58, 189);
}

.btn_registro {
    background-color: #4CAF50;
    font-size: 16px;
    margin: 10px 0;
    padding: 10px;
    color: white;
    cursor: pointer;
    transition: background-color 0.5s ease;
    font-weight: bold;
    height: 3em;
    width: 25em;
}

button:hover {
    background-color: green;
}

.href {
    display: inline-block;
}