.company-registration-confirmation {
    margin: 40px auto;
    padding: 20px;
}

.page-title {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.confirm-instruction {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--color-body);
}

.confirm-section {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2196F3;
}

.confirm-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.confirm-row:last-child {
    border-bottom: none;
}

.confirm-label {
    font-size: 16px;
    width: 200px;
    font-weight: bold;
    color: #555;
    flex-shrink: 0;
}

.confirm-value {
    font-size: .875rem;
    flex: 1;
    color: var(--color-body);
    word-break: break-word;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    padding: 15px 40px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary {
    background: #6c757d;
    color: var(--color-white);
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-primary {
    background: #2196F3;
    color: var(--color-white);
    flex: 1;
}

.btn-primary:hover {
    background: #1976D2;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: .75rem;
    background: #ffc107;
    color: #000;
    border-radius: 3px;
    margin-left: 10px;
}
