/* marketing css */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f0f0f5;
    margin: 0;
    
    padding: 0;
    overflow-y: auto; /* Ensure vertical scrolling */
    height: 100vh; /* Make the body take the full height */
    display: flex;
    justify-content: center;
flex-direction: row;

}

/* Container */
.container {
    background-color: white;
    margin-left: 240px; /* Matches the width of .left-menu (200px) + padding */
    width: calc(100% - 220px); /* Adjust width to fill remaining space */
    padding: 25px;
    border-radius: 1px;
    border: 1px solid #ddd;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    
    max-height: 100%; /* margin: 20px 0; */
    overflow-y: auto; /overflow: hidden;* Enable vertical scrolling within the container */
}

/* Title */
.title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 24px;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Sections */
.section {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

/* Section headers */
.section h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    color: #007aff;
    margin-bottom: 15px;
}

/* Input groups */



/* Responsive Layout */
@media (max-width: 900px) {
    .account-card {
        width: 200px;
    }
}

@media (max-width: 600px) {
    .account-card {
        width: 100%;
    }
}





.spinner {
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-left-color: #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.3s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }

