* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* Cambiado a blanco puro */
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    margin-top: -10px;
}

.image {
    max-width: 100%;
    width: 45%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 25px;
    color: #333333;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input {
    width: 71%;
    padding: 8px;
    padding-left: 16px;
    margin-bottom: 8px;
    border: 1px solid rgba(0, 0, 0, .1);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

button {
    font-size: 16px;
    width: 71%;
    padding: 8px 16px;
    background-color: #2196f3;
    color: white;
    border: 1px solid rgba(0, 0, 0, .05);
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

button:hover {
    background-color: #1e88e5;
}
