body {
    font-family: var(--def-main-txt), sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    max-height: 640px;
    max-width: 1200px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
}

form {
    flex: 3;
    padding: 1rem 5rem;
}

.container .text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 3;
    text-align: center;
    padding: 1rem 5rem;
}

.container .text-content .img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    width: 300px;
    margin: 2rem 0;
    overflow: hidden;
}

.container .text-content .img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hidden {
    display: none;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
}

input, select, textarea, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

button[type="submit"]:hover {
    background-color: var(--def-clr-shadec);
}


.supporting-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    form, .container .text-content {
        padding: 1rem;
    }

    .container .text-content .img-container {
        height: 100px;
        width: 200px;
    }

    h1 {
        font-size: 20px;
    }

    input, select, textarea, button {
        padding: 8px;
    }

    button {
        font-size: 14px;
    }

    .supporting-text {
        font-size: 12px;
    }
}