.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Adjust the height as needed */
    padding: 2em;
    box-sizing: border-box;
}

.logout-button{
    background-color: #ba0101; /* Button color */
    color: #edf0f1;
    padding: 1em;
    border: none;
    border-radius: 4px;
    margin-bottom: 1em;
    font-size: 15px;
    font-weight: bold;
}

    .order-details {
        padding: 20px;
        border: 1px solid #ddd;
        margin: 20px 0;
        background-color: #f9f9f9;
    }

    .order-detail {
        margin-bottom: 10px;
    }

    .order-detail p {
        margin: 5px 0;
    }


.column {
    font-size: 20px;
    flex: 1; /* Equal width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5%;
    box-sizing: border-box;
}

.form-column-left,
.form-column-right {
    margin: 0 1em; /* Spacing between columns */
    background: #fff; /* White background for form areas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    border-radius: 8px; /* Rounded corners */
}

.form-header {
    font-size: 25px;
    color: #333;
    margin-bottom: 1em;
    text-align: left; /* Align header to the left */
}

.benefits-list {
    list-style-type: none; /* No bullets */
    padding-left: 0; /* No padding */
    margin-bottom: 2em;
}

.benefit-item {
    margin-bottom: 0.5em;
    position: relative;
}

.js-form-error {
    margin-bottom: 0.5em;
    font-size: 20px;
    color: red;
    
}
.form-label {
    margin-bottom: 0.5em;
    font-size: 20px;
}

.form-input {
    margin-bottom: 1em;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 20px;
}

.form-button {
    background-color: #24252a; /* Button color */
    color: #edf0f1;
    padding: 1em;
    border: none;
    border-radius: 4px;
    margin-bottom: 1em;
    font-size: 20px;
    font-weight: bold;
}

.form-link {
    text-align: center;
    color: #007bff;
    text-decoration: none;
    font-size: 20px;
}

.form-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
    }

    .form-column-left,
    .form-column-right {
        width: 100%; /* Each column takes the full width on small screens */
        margin: 0;
        border-right: none;
    }

    .form-header {
        text-align: left; /* Align headers to the left on small screens */
    }
}

/* Ensure buttons have a smooth transition */
.form-input,
.form-button {
    width: calc(100% - 20px); /* Account for padding */
    margin-bottom: 15px; /* Space between form elements */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 200px;
    background-color: #f4f4f4;
    border-right: 1px solid #ccc;
    padding: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.sidebar ul li a:hover {
    background-color: #a49e9e;
}

.content {
    flex: 1;
    padding: 20px;
}

.form-error {
    color: #f70606;
}

.form-success {
    color: #064814;
}

.form-reset {
    padding-top: 20px;
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}


/* .content-item {
    display: none;
}

.content-item.active {
    display: block;
} */

