body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f4f4f4;
}

.container {
    width: 1024px;
    max-width: 100%;
    margin: 20px auto;
    padding: 10px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.card-preview {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin: 20px 0;
}

.card {
    width: 320px;
    height: 200px;
    border: 1px solid #000;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
    border-radius: 4px;
}

.text {
    position: absolute;
    font-size: 14px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
}

.form-slider-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.form-section {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}