body {
    font-family: Arial, sans-serif;
    padding: 40px;
    text-align: center;
}

#casa {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
  }

h2 {
    color: black;
    margin-top: 100px;
}

input[type="text"] {
    padding: 10px;
    width: 400px;
    border-radius: 6px;
    border: 1px solid black;
    font-size: 20px;
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    background-color: #5052eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #243ed1;
}

#resultat {
    margin-top: 20px;
    font-weight: bold;
    color: #333;
}

.error {
    color: red;
}
