html, body {
    height: 100%;
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: Arial, sans-serif;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    min-height: 100vh;
}



header {
    position: absolute;
    top: 20px;
    left: 20px;
}

header img {
    max-width: 180px; /* Adjust as needed */
}

.main-content {
    max-width: 600px;
    padding: 20px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    color: #E3C24C;
    margin-bottom: 10px;
}

.message {
    font-size: 16px;
}

.text-center {
    text-align: center;
}

.text-error {
    color: red;
}
