/* Lab Test Register Page */
.lab-test-register-page {
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.register-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Section */
.register-left {
    padding: 40px;
}

.register-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.register-subtitle {
    font-size: 24px;
    color: #0051a5;
    margin-bottom: 20px;
    font-weight: 600;
}

.register-description {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Right Section */
.register-right {
    padding: 40px;
}

.option-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 81, 165, 0.2);
    border-color: #0051a5;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0051a5 0%, #003d7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-icon i {
    font-size: 36px;
    color: white;
}

.option-content {
    flex: 1;
}

.option-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.option-description {
    font-size: 16px;
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

.option-arrow {
    flex-shrink: 0;
}

.option-arrow i {
    font-size: 24px;
    color: #0051a5;
    transition: transform 0.3s ease;
}

.option-card:hover .option-arrow i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .register-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .register-title {
        font-size: 36px;
    }

    .register-subtitle {
        font-size: 20px;
    }

    .option-card {
        padding: 20px;
    }

    .option-icon {
        width: 60px;
        height: 60px;
    }

    .option-icon i {
        font-size: 28px;
    }

    .option-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .lab-test-register-page {
        padding: 40px 0;
    }

    .register-left,
    .register-right {
        padding: 20px;
    }

    .register-title {
        font-size: 28px;
    }

    .register-subtitle {
        font-size: 18px;
    }

    .register-description {
        font-size: 16px;
    }

    .option-card {
        flex-direction: column;
        text-align: center;
    }

    .option-arrow {
        transform: rotate(90deg);
    }
}