
/* Form Card */
.form-card {
    background: white;
    padding: 1.5rem;
    order: 2;
}

.form-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
.display-first {
    order: 2;
 }
  
.display-second {
    order: 1;
 }

.company-logo {
    background: var(--bg-blue-light);
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.security-badge .label {
    color: var(--primary-light);
    font-weight: bold;
    font-size: 0.875rem;
}

.security-badge .provider {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.125rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05em;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(0, 155, 217, 0.1);
}

.form-hint {
    font-size: 9px;
    color: #6b7280;
    margin-top: 0.25rem;
    word-wrap: break-word;
}

.captcha-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.recaptcha-container {
    width: 100%;
    height: 65px;
    overflow: hidden;
    border-right: 1px solid #e2e8f0;
    background-color: #fafafa;
}


.captcha-box {
    flex: 1;
    background: var(--bg-blue-light);
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    color: #9ca3af;
}

.refresh-button {
    padding: 0.25rem 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    background: white;
    color: var(--primary-light);
    cursor: pointer;
    transition: background-color 0.2s;
}

.refresh-button:hover {
    background: var(--bg-blue-light);
}

.submit-button {
    padding: 1rem;
}

/* Carousel Card */
.carousel-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    order: 1;
}

.carousel {
    position: relative;
    height: 600px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 35%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s;
}

.carousel-indicator.active {
    background: white;
}


/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column-reverse;
    }

    .display-first {
        order: 1;
    }
    
    .display-second {
        order: 2;
    }

    .form-card,
    .carousel-card {
        width: 100%;
    }

    .carousel {
        height: 400px;
    }
}