/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #000;
    background-color: #fff;
}

/* Carousel Section */
.carousel-section {
    display: flex;
    padding: 20px;
    gap: 20px;
    background-color: #f8f8f8;
}

/* Vertical Menu */
.vertical-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 300px;
}

.vertical-menu a {
    color: #000;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
}

.vertical-menu a:last-child {
    border-bottom: none; /* Remove bottom border for the last item */
}

/* Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    background-color: #e0e0e0;
    width: 100%;
    height: 100%;
}

.carousel img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: none;
}

.carousel img:first-child {
    display: block;
}

/* Form Section */
.form-section {
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Center the form and set spacing */
h4 {
    text-align: center;
    margin-bottom: 20px;
}

.left-text {
    text-align: left;
    margin-bottom: 20px;
    color: #ff6701;
}

/* Form row setup */
.form-row {
    display: flex;
    gap: 10px; /* Space between fields */
    margin-bottom: 8px;
}

/* Flex each field to take equal space */
.form-row input, 
.form-row select {
    flex: 1;
}

/* Radio buttons in a single row */
.form-row label {
    display: flex;
    margin-left: 20px;
    font-size: 14px;
}

/* Label and input styling */
input, select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 0px;
    box-sizing: border-box;
    width: 100%; /* Ensures each field takes full width in its container */
}

/* Submit button styling */
.submit-join1 {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #555;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-section {
        flex-direction: column;
        align-items: center;
    }

    .vertical-menu, .form-section {
        width: 100%;
    }
}

/* Carousel controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}


