body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.title-word {
    font-size: 24px;
    font-weight: bold;
}

.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-link {
    margin: 20px;
    /* Increase margin to give more space between icons */
}

.icon-link img {
    width: 100px;
    /* Default width for mobile */
    height: 100px;
    /* Default height for mobile */
}

@media (min-width: 768px) {
    .title-container {
        flex-direction: row;
        margin-bottom: 40px;
    }

    .title-word {
        font-size: 48px;
        margin: 0 10px;
    }

    .icon-container {
        flex-direction: row;
    }

    .icon-link img {
        width: 200px;
        /* Increase width for desktop */
        height: 200px;
        /* Increase height for desktop */
    }
}

.login-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container h1 {
    margin-bottom: 20px;
    font-size: 24px;
}

.login-container label {
    display: block;
    margin: 10px 0 5px;
}

.login-container input {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-container button {
    width: 100%;
    padding: 10px;
    background-color: #C09088;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #412A26;
}

#error-message {
    color: red;
    margin-top: 10px;
}